
$(document).ready(function(){
var url=window.location.pathname;
/*if(url =="/test"){
$(".dmenu").hide();
$(".dmenu2").show();
} */
if(url.search("sss") != -1){
$("#sss").show();
}
if(url.search("bss") != -1){
$("#bss").show();
}
if(url.search("mpa") != -1){
$("#mpa").show();
}
});
var docBody=null;
function zoomDoc(size){
if(!docBody){
return;
}
docBody.style.fontSize = size + 'px';
var __childs = docBody.childNodes;
for(var i=0;i<__childs.length;i++)
{
if(__childs[i].nodeType==1)
{
__childs[i].style.fontSize=size + 'px';
}
}
}
function init()
{
docBody=document.getElementById('xp_zw');
}
window.onload=init;
function MM_changeProp(objId,x,theProp,theValue) { //v9.0
var obj = null; with (document){ if (getElementById)
obj = getElementById(objId); }
if (obj){
if (theValue == true || theValue == false)
eval("obj.style."+theProp+"="+theValue);
else eval("obj.style."+theProp+"='"+theValue+"'");
}
}