// Make calls to other operations from this file. 


// fired at the end of the page once all html has loaded
function onDOMload () {
	if(typeof sIFR == "function"){
		switchFonts();
	};
	if(typeof buildTransitions == "function") {
		buildTransitions();
	};
};

// fired once all content has loaded
function onPageLoad () {

};

function doUnload()
	{
	// loads popup reminder when the page unload and chucks it behind. Only load the one though!!
	pw = window.open('','pw','width=818,height=620,left=50,top=50,scrollbars=yes');
	pw.blur();
	pw.location = "http://www.sellyourinjury.co.uk/rmpi_popunder/under.php";
	}



document.onload = onPageLoad();

