<!-- 

function popWin(URL)
{
	var winLocation = URL;
	window.open(winLocation, "DataSheet", "width=562, height=400, left=0, top=0, menubar=no, status=no, location=no, toolbar=no, scrollbars=yes, resizable=yes");
}

function Validate()
{
	var sOutput="Please enter a value in: ";
	var sQuan="0";
		
	if(document.feedback.Name.value=="")
		sOutput=sOutput+" Name, ";

	if(document.feedback.Email.value=="")
		sOutput=sOutput+" Email, ";

	if(sOutput.length>25)	
		alert(sOutput);
	else
		document.feedback.submit();
}

function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=1,statusbar=0,menubar=0,resizable=0,width=600,height=600,left = 20,top = 20');");
}

function AccNav()
{
	sPage = document.accessory.AccNav.value;
	alert(sPage);
}

// -->