function showContactForm() {
	document.getElementById('contact_form_div').style.display="block";
}

function PopupPic(sPicURL) { 
	window.open("/showpic.php?path="+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}

function showpic(path, width, height, scroll) {
	window.open("/showpic.php?path=" + path, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",width=" + width + ",height=" + height + ",scrollbars=" + scroll);
	return false;
}

function showpic2(path, width, height, scroll) {
	window.open("/showpic2.php?path=" + path, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",width=" + width + ",height=" + height + ",scrollbars=" + scroll);
	return false;
}
