if (top !== self) {
	top.location.href = self.location;
}

window.name="CLICKTSO";

function submittoken(evt)
{
		document.userform.action = evt.href;	
		document.userform.submit();
		return false					
}	


function removeQOItem( lineNo )
{
	// Removes the specified line no from the quick order list
	document.OrderEntryForm.hidRemoveLine.value = lineNo;
	document.OrderEntryForm.submit();

	return false;
}			

function confirmSubmit()
{
var agree=confirm("This will delete all of the order and line references you have added. \n\nTo continue click 'OK'. \n\nIf you wish to delete only selected references click 'Cancel' then \nremove the text in each selected reference field and click 'Update'.");
if (agree)
	return true;
else
	return false;
}

function postToSodSite()
{
	document.userform.action = 'http://www.tsoshop.co.uk/StandingOrders/login.aspx?ReturnUrl=%2fStandingOrders%2fmain.aspx';
	document.userform.submit();

	return false;	
}

