//---- open CMS admin window:
function OpenAdmin(theURL){
	LeftPosition = (screen.width) ? (screen.width)-510 : 0;
	cmsheight = (screen.height) ? (screen.height)*.75 : 550;
	settings = 'height='+cmsheight+',width=500,top=0,left='+LeftPosition+',scrollbars=yes,resizable=yes'
	win = window.open(theURL,'viewit',settings)
}

//---- forgot password popup:
function pwpop(URL) { 
  window.open(URL,'pw','scrollbars=yes,resizable=yes,width=325,height=300');
}