// JavaScript Document

image1 = new Image();
image1.src = "images/spacer.gif";

function preview_image(url, text){
	document.photo_img.src 								= "loading.gif";
	
	document.photo_img.src 								= url;
	document.getElementById("photo_text").innerHTML 	= text;
}

function print_page(listing) {
	var leftPos = (screen.availWidth-550) / 2;
	var topPos = (screen.availHeight-500) / 2;
	Press1Win = window.open('site_detail_print.php?listing=' + listing,'','width=550,height=500,scrollbars=yes,resizable=no,titlebar=0,top=' + topPos + ',left=' + leftPos);
}
