// general functions

var calcwin;
function showCalculator(country,agency,listing){
	var settings,leftPosition,topPosition,url;
	url = "index.cfm?fuseaction=home.mortCalc\&country=" + country + "\&agency=" + agency +
		"\&listing=" + listing;
	leftPosition = (screen.width) ? (screen.width)/2 - 300 : 0;
	topPosition = (screen.height) ? (screen.height)/2 - 300 : 0;
	settings = 'toolbar=NO,location=NO,directories=NO,status=NO,menubar=NO,scrollbars=yes,resizable=yes,copyhistory=NO,width=450,height=380,top='+ topPosition+ ',left='+leftPosition;
	if (calcwin && !calcwin.closed) {
		calcwin.close();
	}
	calcwin = window.open(url,'calcwin',settings);
}

function printThis(){
	if (document.all){
		document.all.hidebut.style.visibility = "hidden";
	} else if (document.getElementByID) {
		document.getElementByID('hidebut').style.visibility = "hidden";
	}
	window.print();
	//window.close();
	if (document.all){
		document.all.hidebut.style.visibility = "";
	} else if (document.getElementByID) {
		document.getElementByID('hidebut').style.visibility = "";
	}
}
function reloadLanguage(url){
	location.href = url;
}

