// JavaScript Document
// Added by DH Systems 2011/02/28

function openNewWindow(URLtoOpen, windowName, windowFeatures)
	{
		// added by DH Systems 2011 02 28
		if (URLtoOpen == "http://autos.blue-sock.com/clients/19/blist.php")
			{
				window.location = "http://broadbent.dhsystems.co.uk/breaking-vehicles/";
				return true;
			}
			
		if (URLtoOpen == "http://autos.blue-sock.com/clients/19/slist.php")
			{
				window.location = "http://broadbent.dhsystems.co.uk/salvage-vehicles/";
				return true;
			}
	
		newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	}
	
function popUp(URL)
	{
		// added by DH Systems 2011 02 28
		if (URL == "http://autos.blue-sock.com/clients/19/blist.php")
			{
				window.location = "http://broadbent.dhsystems.co.uk/breaking-vehicles/";
				return true;
			}
			
		if (URL == "http://autos.blue-sock.com/clients/19/slist.php")
			{
				window.location = "http://broadbent.dhsystems.co.uk/salvage-vehicles/";
				return true;
			}
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=0,resizable=1,width=950,height=750,left = 165,top = 137');");
	}
