// JavaScript Document
//if((screen.width<800)||(screen.height<600))alert("Your screen resolution is too low.\rYou need to view these pages at a screen resolution of at least 800x600")

function launchLogin(name){
	//check for browsers
	//resizeable=1,
	//fullscreen=yes,
	if(name=="record"){
		//name = "../cpdonline3/detectFlash.htm"
		name = "../cpdonline3/"
	}
	x=screen.availWidth;
	y=screen.availHeight-26;
	window.open(name,"CPD","scrollbars=1,directories=0,status=0,toolbar=0,menubar=0,resizable=1,outerWidth=" + x + ",outerHeight=" + y + ",width=" + x + ",height=" + y + ",top=0,left=0, screenX=100,screenY=100");
}

