//Programming by Viaden Inc | www.viaden.com
function openimage(imagetitle, image, w, h)
{
	//if (!w){w=200};
	if (!w){
	win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=1,resizeable=1");
	}
	else{
	win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,width="+w+",height="+h);
	}
	win1.document.open();
	win1.document.write("<html><head><title>"+imagetitle+"</title><link rel=stylesheet href=css/style.css></head>\n");
	win1.document.write("<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><table width=100% height=100% cellpadding=0 cellspacing=5>\n");
	win1.document.write("<tr><td align=center><img src='"+image+"' border=0></td></tr>\n");
	win1.document.write("<tr><td align=center><a href=javascript:window.close()>Close the window</a></td></tr>\n");
	win1.document.write("</table></body></html>");
}

