function popUp(URL)
{
	if (parent.orderform && !parent.orderform.closed)
	{
		parent.orderform.document.location = URL;
		setTimeout ('toFront()',100);
		parent.orderform.document.focus();
	}
	else
	{
		eval ("parent.orderform = window.open(URL, 'Order', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=800,height=600');");
	}
}

function toFront()
{
	if (parent.orderform && !parent.orderform.closed)
		parent.orderform.focus();
}

