//script for IE menu -->

startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("dmenu");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}


//script for POP-UP window -->

function popup_window_h(url){
 window.open(url,"_blank","width=400,height=290,toolbar=no,location=no,scrollbars=no,menubar=no,status=no,resizable=yes" );
}
function popup_window_v(url){
 window.open(url,"_blank","width=370,height=340,toolbar=no,location=no,scrollbars=no,menubar=no,status=no,resizable=yes" );
}
 
function popup_window_2(url){
 window.open(url,"_blank","width=370,height=193,toolbar=no,location=no,scrollbars=no,menubar=no,status=no,resizable=yes" );
}
function popup_window_big(url){
 window.open(url,"_blank","width=550,height=700,toolbar=no,location=no,scrollbars=no,menubar=no,status=no,resizable=yes" );
}
function popup_window_360(url){
 window.open(url,"_blank","width=400,height=358,toolbar=no,location=no,scrollbars=no,menubar=no,status=no,resizable=yes" );
}
function popup_window_360v(url){
 window.open(url,"_blank","width=350,height=450,toolbar=no,location=no,scrollbars=no,menubar=no,status=no,resizable=yes" );
}