function showHideDIV(id){
	if (document.getElementById(id).style.display == "") 
		showit = "none"; 
	else 
		showit = ""; 
	document.getElementById(id).style.display = showit;
}


function blurLinks(){
	if(document.getElementsByTagName){
		lnks = document.getElementsByTagName('a');
		for (i = 0; i < lnks.length; i++) {
			lnks[i].onfocus = new Function("if(this.blur) this.blur()");
		}
	}
} // end blurLinks()
        
function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) 
		selObj.selectedIndex=0;
}

function openMyPopup(url,target,W,H)
 {
    if (!W) W=200;
    if (!H) H=200;
    if (!target) target="_new";

    var X = (screen.width/2)-(W/2);
    var Y = (screen.height/2)-(H/2);

    var winPref = "width=" + W + ",height=" + H
                + ",innerWidth=" + W + ",innerHeight=" + H
                + ",left=" + X + ",top=" + Y
                + ",screenX=" + X + ",screenY=" + Y
                + ",dependent=yes,titlebar=no,scrollbars=no,resizable=no";


    openMyPopup.popup = window.open( url, target, winPref );
    openMyPopup.popup.resizeTo(1*W,1*H);
    openMyPopup.popup.focus();

    return false;
 }

