// JavaScript Document


// Flash Demo popup script
function goNewWin(URL,w,h) {
		day = new Date();
		id = day.getTime();
		if(w){
			window.open(URL, '" + id + "', 'fullscreen=0,toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h + ',left = 67,top = 14');
			} 
		else {
			if (screen.width > 800) {
					eval("page" + id + " = window.open(URL, '" + id + "', 'fullscreen=0,toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,resizable=0,width=800,height=600,left = 67,top = 14');");
					}
				else {
					eval("page" + id + " = window.open(URL,'" + id + "', 'fullscreen=1,toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,scrollbar=0,resizable=0'); ");
			}
		}		

} // end function goNewWin

// Download the CAM Demo
function downloadDemo() {
		window.location.href = "http://www.abs-usa.com/solutions/appointment_scheduling_software/cam/resources/demo.aspx";
}
