﻿
function Show_Image(stockId) {
	getHTML('stockArticle.php','stockId='+stockId,'propertyDetailCopy');
	jQuery('body').css('overflow','hidden');
	jQuery('.gallerypopup').fadeIn('fast');
}

function Close_Image() {
	jQuery('.gallerypopup').fadeOut('fast');
	jQuery('body').css('overflow','auto');	
}


function Show_Quote() {
	getHTML('requestInfo.php','','popDialog');
	$('#popDialog').dialog({
				height: 480,
				title: "Request For Information",
				width: 500,
				modal: true,
				resizable: true
			});
}
function Show_STF() {
	getHTML('sendtofriend.php','','popDialog');
	$('#popDialog').dialog({
				height: 480,
				title: "Send to a friend",
				width: 500,
				modal: true,
				resizable: true
			});
}
function Close_Quote() {
	jQuery('.quotepopup').fadeOut('fast');
	jQuery('body').css('overflow','auto');	
}

