//<![CDATA[
var calcwin;
function showCalculatorNoProp(lang){
	var settings,leftPosition,topPosition,url;
	url = "http://www.eraeurope.com/index.cfm?fuseaction=mortCalc.showCalc\&changeLanguage=" + lang;
	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=420,height=320,top='+ topPosition+ ',left='+leftPosition;
	if (calcwin && !calcwin.closed) {
		calcwin.close();
	}
	calcwin = window.open(url,'calcwin',settings);
}

function showCalculator(propertyUUID,propertyPrice,lang){
	var settings,leftPosition,topPosition,url;
	url = "http://www.eraeurope.com/index.cfm?fuseaction=mortCalc.showCalc\&title=ERA Greece | simulation de financement\&propertyUUID=" + propertyUUID;
	url += "\&propertyPrice=" + propertyPrice + "\&changeLanguage=" + lang;
	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=420,height=320,top='+ topPosition+ ',left='+leftPosition;
	if (calcwin && !calcwin.closed) {
		calcwin.close();
	}
	calcwin = window.open(url,'calcwin',settings);
}

//]]>