// JavaScript Document
<!-- Begin

function goSelect(daform) 
{
	with(daform) 
	{
		top.window.location=options[selectedIndex].value;       // jump to that option's value
	}
}

function detailPop()
{
detail=window.open("detail.cfm","detail","width=500,height=500,top=175,left=300,resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no")
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=200,height=250,left = 540,top = 275');");
}


	
//  End -->
