// Global
document.onselectstart=function(){return false};
document.ondragstart=function(){return false};

function popUp(mypage,myname,w,h,scrolls) { //v1.0
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrolls+',status=0,toolbar=1';
	win = window.open(mypage,myname,settings);
	win.focus();
}