<!--script by Denali Solutions-->
<!--
var picWindow;
function showPic(pic_name)
{
	picWindow = window.open("", "big_pic","width=450,height=450,menubar,left=INT");
	picWindow.focus();
	picWindow.document.open();
	var picString = "images/" + pic_name + ".jpg";	
	picWindow.document.write("<img src=" + picString + ">");
	return false;
}
function showPic_land(pic_name)
{
	picWindow = window.open("", "big_pic","width=550,height=400,menubar,left=INT");
	picWindow.focus();
	picWindow.document.open();
	var picString = "images/" + pic_name + ".jpg";	
	picWindow.document.write("<img src=" + picString + ">");
	return false;
}
function showPic_port(pic_name)
{
	picWindow = window.open("", "big_pic","width=400,height=500,menubar,left=INT");
	picWindow.focus();
	picWindow.document.open();
	var picString = "images/" + pic_name + ".jpg";	
	picWindow.document.write("<img src=" + picString + ">");
	return false;
}
//-->