function open_pic(title,image){
	picWindow=window.open("","NetMango","scrollbars=yes,menubar=no,width=300,height=300,screenX=20,screenY=20");
	picWindow.document.write("<HEAD><TITLE>"+title+"</TITLE></HEAD><BODY onload='picWindow_onload()'>");
	picWindow.document.write("<CENTER><a href='#' onclick='self.close();'><img id='vpic' border='0' src='websiteimages/"+image+"'></a></CENTER>");
	picWindow.document.write("</BODY>");
	picWindow.document.write("<script language='javascript'>function picWindow_onload(){");
	picWindow.document.write("var tmppic=document.getElementById('vpic');");
	picWindow.document.write("window.resizeTo(Math.min(window.screen.availWidth-50,tmppic.width+50),Math.min(window.screen.availHeight-50,tmppic.height+80));");
	picWindow.document.write("}");
	picWindow.document.write("</"+"script>");
	picWindow.document.write("</HTML>");
	picWindow.document.close();
	picWindow.focus();
	return true;
}