window.onunload = callPopUps;
function changeVariable(changeTo, p_blnCalledExternally){
	if(p_blnCalledExternally == true) {
		leaveSite = 'no';
		window.location = ORDER_PAGE_URL;
	}
	else {
		leaveSite = changeTo;
	}
}
function submitForm(setValue) {
	document.getElementById('funcml').value = setValue;
	document.subscribeForm.submit();
}


