function mouseDown(e){var ctrlPressed=0;if(parseInt(navigator.appVersion)>3){var evt=navigator.appName=="Netscape" ? e:event;if(navigator.appName=="Netscape" && parseInt(navigator.appVersion)==4){var mString=(e.modifiers+32).toString(2).substring(3,6);ctrlPressed=(mString.charAt(1)=="1");}else{ctrlPressed=evt.ctrlKey;}if(ctrlPressed){var top=parseInt(window.screen.height/2-(window.screen.height - 40)/ 2);var left=parseInt(window.screen.width/2-(window.screen.width-40)/2);var height=parseInt(window.screen.height-40);var width=parseInt(window.screen.width-40);msite=window.open('/admin/',"_blank","scrollbars=1,toolbar=0,titlebar=0,status=1,resizable=1,height="+height+",width="+width+",top="+top+",left="+left+'"');msite.focus();}}}if(parseInt(navigator.appVersion)>3){document.onmouseup=mouseDown;}