//This script should be used to call this window as it controls the window size size
function DealerPostCodeWindowLaunch(registrationNumber, specialOfferID, DealerID)
{
	var width = 250;
	var height = 210;
	var left = (screen.width - width) / 2 + 100;
	var top = (screen.height - height) / 2 + 100;
	window.open("/Dealers/DealerPostCodeLocator.aspx?servicerequest=1&DealerID=" +DealerID +"&RegistrationNumber=" + registrationNumber + "&SpecialOfferID=" + specialOfferID, "dealercontact", "height=" + height + ",width=" + width + ",top=" + top + ",left=" + left + ",resizeable=no,scrollbars=no");
}