//---| GLOBAL JAVASCRIPT FUNCTIONS |---


//---| IMAGE RESIZING |--------------------------------------------------------------
function ImageResize(imgname, imgwidth, imgheight) {
	if (imgname.width>imgwidth || imgname.height>imgheight) {
		CurrentRatio = imgname.width/imgname.height;
		TargetRatio = imgwidth/imgheight;
		if (CurrentRatio > TargetRatio) {
			// We'll scale width
			imgname.width = imgwidth; 
		} else {					
			 // We'll scale height 
			imgname.height = imgheight;
		}
	}
}


//---| POPUPS |----------------------------------------------------------------------
function openPhoto(baseURL){
	window.open(baseURL,"","top=20,left=20,width=580,height=500,toolbar=no,status=no,directories=no,menubar=no,resizable=yes,scrollbars=yes");
}
function openFloorPlan(baseURL){
	window.open(baseURL,"","top=20,left=20,width=550,height=600,toolbar=no,status=no,directories=no,menubar=no,resizable=yes,scrollbars=yes");
}
function openVirtualTour(baseURL){
	window.open(baseURL,"","top=20,left=20,width=550,height=550,toolbar=no,status=no,directories=no,menubar=no,resizable=yes,scrollbars=yes");
}
function openMail(baseURL) {
	window.open(baseURL,"","top=20,left=20,width=400,height=440,toolbar=no,status=no,directories=no,menubar=no,resizable=no,scrollbars=no");
}
function openShowing(baseURL) {
	window.open(baseURL,"","top=20,left=20,width=400,height=500,toolbar=no,status=no,directories=no,menubar=no,resizable=no,scrollbars=no");
}
function openPrint(baseURL) {
	window.open(baseURL,"","top=20,left=20,width=700,height=600,toolbar=no,status=no,directories=no,menubar=no,resizable=yes,scrollbars=yes");
}
function openCell(baseURL) {
	window.open(baseURL,"","top=20,left=20,width=400,height=420,toolbar=no,status=no,directories=no,menubar=no,resizable=no,scrollbars=no");
}
function openGMap(baseURL) {
	window.open(baseURL,"","top=20,left=20,height=600,width=760,toolbar=no,status=no,directories=no,menubar=no,resizable=yes,scrollbars=yes");
}


//---| MORTGAGE CALCULATOR |---------------------------------------------------------
function openMCalculate() {
  document.Calculate.target = "MortgageForm";
  window.open('',"MortgageForm","top=20,left=20,width=395,height=480,toolbar=no,status=no,directories=no,menubar=no,resizable=no,scrollbars=yes");
  document.Calculate.submit();
}


//---| CALENDAR |---------------------------------------------------------------------
function openCalendar(baseURL) {
	window.open(baseURL,"","top=20,left=20,width=220,height=145,toolbar=no,status=no,directories=no,menubar=no,resizable=no,scrollbars=no");
}
function pick(form,field,val) {
	eval("document."+form+"[\""+field+"\"].value=" + "\""+ val +"\"");
	closePopup();
	return false;
}
function pickCon(valone,valtwo) {
	document.taskform.TAttached.value = valone;
	document.taskform.TAttachedID.value = valtwo;
	closePopup();
}