<!--
/*
	setpopup.js
	
	Created by FH 17/05/2004
	
	JS to set the body onload and on unload functions to use the feedback popup
	This has be set in javascript so that it will work even on partner pages 
	where the body tag is defined in topbanner.asp.
	
	This script requires js\leavepop.js top be included and should be set after
	incP/Scotsman/topbanner.asp has been included.

*/


// set the onload function
window.onload = function anonymous() { 
						//alert("onload");
						resetPopVars(); 
						}
//set the onUnload function
window.onunload = function anonymous() { 
						//alert("onUnload");
						leavepop('LeaveEmpty.asp?wide=500&high=200&page=mortgagespopup.asp',520,200,leftOK); 
						}
//-->
