// JavaScript Document
//Use NO Script Tags


var propertyWindow;
function directions(linkTarget) {
	var propertyWidth=640;
	var propertyHeight=825;
	var winLeft = (screen.width-propertyWidth)/2.20;
	var winTop = (screen.height-propertyHeight)/1.90;
	var winOptions = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes";
	winOptions += ",width=" + propertyWidth;
	winOptions += ",height=" + propertyHeight;
	winOptions += ",left=" + winLeft;
	winOptions += ",top=" + winTop;
	propertyWindow = window.open(linkTarget, "info", winOptions); 
	propertyWindow.focus();
}

