//Popup Windows
function show_contact() {
	var Width =400;
	var Height =400;
	var properties =
	',directories=0'+
	',location=0'  +
	',menubar=0'   +
	',scrollbars=0'+
	',status=0'    +
	',toolbar=0'   +
	',resizable=1' +
	',width='+Width   +
	',height='+Height +
	',screenX=15' +
	',screenY=15' +
	',top=100'  +
	',left=180';

	link="/quick_contact_popup.php";
	popupName="quickcontact";
	wind=window.open (link, popupName, properties);
	wind.focus();

}
