curPage="<?php echo $GLOBALS['LAYOUT']['page'];?>";
curSub="<?php echo $GLOBALS['LAYOUT']['sub'];?>";
function move_in(t1){
	if(curPage!=t1 && curPage+'-'+curSub!=t1){
		document.getElementById("menu-"+t1).src="../_images/b-"+t1+"2.gif";
	}
}
function move_out(t1){
	if(curPage!=t1 && curPage+'-'+curSub!=t1){
		document.getElementById("menu-"+t1).src="../_images/b-"+t1+".gif";
	}
}
function win_open(t1){
	var windowWidth=600;
	var windowHeight=600;
    var centerWidth = (window.screen.width - windowWidth) / 2;
    var centerHeight = (window.screen.height - windowHeight) / 2;
	window.open (t1,"mywindow","location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=no,width="+windowWidth+",height="+windowHeight+",left="+centerWidth+",top=" + centerHeight); 
}