function ShowPhoto( strName, strSet, strLink, strWidth, strHeight, strBG, strMaterial, strSize)
{
	strWidth2 = strWidth - 150;
	myWin = window.open( "", "Detail", "width=" + strWidth + ", height=" + strHeight + ", location=no, scrolling=no, toolbar=no, menubar=no, status=no");
	myWin.document.write("<html><head><title>Image Detail</title><link rel=stylesheet href='style.css' type='text/css'></head>");
	myWin.document.write("<body bgcolor='" + strBG + "' onclick='javascript:window.close()'>");
	
	myWin.document.write("<table width='100%' height='100%' border=0 cellpadding=10 cellspacing=0><tr><td width="+strWidth2+"><img src='images/gallery/" + strSet + "/"+strLink+".jpg' border=1></td>");
	myWin.document.write("<td width=150 class='info'><br><br><span class='ttl'>Information:</span>");
	myWin.document.write("<br><br><span class='subttl'>Name:</span><br>"+strName+"<br><br><span class='subttl'>Material:</span><br>"+strMaterial+"<br><br><span class='subttl'>Size:</span><br>"+strSize+" cm");
	myWin.document.write("</td></tr></table></body></html>");
}


function ShowImage( strName, strLink, strWidth, strHeight)
{
	myWin = window.open( "", "Detail", "width=" + strWidth + ", height=" + strHeight + ", location=no, scrolling=no, toolbar=no, menubar=no, status=no");
	myWin.document.write("<html><head><title>Photo</title></head>");
	myWin.document.write("<body bgcolor='090909'>");
	myWin.document.write("<img src='"+strLink+"' border=1>");
	myWin.document.write("<br><br><center><a href='javascript:window.close();'><img src='/images/close.jpg' border=0></a></center><br>");
	myWin.document.write("</body></html>");
}
