function openWin(URL,aName,wName,Scroll,W,H,T,L)
{
	window.name = aName; aWindow = window.open(URL,wName,"toolbar=no,location=no,directories=no,status=no,,scrollbars="+ Scroll +",width="+ W +",height="+ H +",top="+ T +",left="+ L +",resizable=no,menubar=no");
}

function confirmAbandon()
{
	
	var answer = confirm('Are you sure you want to abandon this order and exit?\nClick OK to be logged out of this list and sent back to the search screen\nClick Cancel to continue shopping from this list')
	if (answer)
	{
			document.Form1.cancelconfirm.value='yes'
	}
	else
	{
		document.Form1.cancelconfirm.value='no'
	}
			
}