// JavaScript Document Version 1.0 10000001
function HandleOnClose() {
// click X on browser capture
   if (event.clientY < 0)
   {	document.location='http://www.yahoo.co.uk/clearcart.asp';
   }
}

function preventCommand(e) {
// Alt + F4 capture
	if(event.keyCode == '115')
	{	document.location='http://www.yahoo.co.uk/clearcart.asp';
	}
	
}
