<!--
var brt=0;
var fl=0
userAgent = window.navigator.userAgent;
if (userAgent.indexOf('Gecko')>-1) {
	brt=1; //Gecko;
}
else if (userAgent.indexOf('MSIE')>-1) {
	brt=2; //MSIE;
}
else brt=3; //Other;


function to_page(i)
{
	document.getElementById('page').value=i;
	document.getElementById('sform').submit();
}

function bgm_on(x)
{
	document.getElementById('bgm'+x).bgColor="#37BA3A";
}

function bgm_off(x)
{
	document.getElementById('bgm'+x).bgColor="#C2C2C2";
}

function show(t,obj)
{
	
	if(fl) return 0;
	if (t)
	{
		document.getElementById('menu').innerHTML=document.getElementById('md_menu'+t).innerHTML;
	}
	if (brt==1) // Gecko
	{
		document.getElementById('md').style.visibility='visible';
		document.getElementById('md').style.left=obj.x+190+'px';
		document.getElementById('md').style.top=156+(t-1)*31;		
	} else
	{	
		document.getElementById('md').style.visibility='visible';
		document.getElementById('md').style.left=190;
		document.getElementById('md').style.top=156+(t-1)*31;
	}
}

function hide()
{
		document.getElementById('md').style.visibility='hidden';
}

function opsst()
{
	if (document.getElementById('chtss').checked)
	{

		document.getElementById('tss').style.visibility = 'visible';
		document.getElementById('tss').style.display = 'block';
	} else
	{
		document.getElementById('tss').style.visibility = 'hidden';
		document.getElementById('tss').style.display = 'none';
	}	
}

function onsortselect(org,sort)
{
		document.location='/guide.php?org='+org+'&sort='+sort;
}

function onsortselect2(sort)
{
	document.getElementById('sort').value=sort;
	document.getElementById('sf').submit();
}


function showfp()
{
	document.getElementById('fprf').submit();
}

function edit_sz_photo(m)
{
	if (m)
	{
		Win = window.open('edit_sz_photo.php?pht='+m,'');	
	}
}

// popup image >
PositionX = 20;
PositionY = 20;
defaultWidth  = 660;
defaultHeight = 500;

if (parseInt(navigator.appVersion.charAt(0))>=4)
{
	var isNN=(navigator.appName=="Netscape")?1:0;
	var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
}

var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;

function popImage(x)
{
	if (x)
	{
		if (isNN){ imgWin=window.open('popup.php?bpic='+x,'',optNN);}
		if (isIE){ imgWin=window.open('popup.php?bpic='+x,'',optIE);}
	}
}
// popup image <
//-->

