var i = 0;
popup = function( url, title, w, h )
{
	var settings = 'width=' + w + ',height=' + h;

	NewWin		= new Array();
	NewWin[i]	= window.open( '', i, settings );
	NewWin[i].document.open();
	NewWin[i].document.writeln( '<html><head><title>'+ title +'</title><style type=text/css> a:hover {color: cccccc;} a:link, a:active, a:visited, A:URL {text-decoration: none}</style></head><body text=999999 link=99aa99 alink=8899aa vlink=99aa99 bgcolor=333333 marginwidth=16 marginheight=16 leftmargin=16 rightmargin=16 topmargin=16 bottommargin=16><center><font face=verdana,arial,helvetica size=2><font face="georgia,palatino,palatino linotype" size=1><a href="javascript:window.close();"><img src=images/works/'+ url +'>&nbsp;<br>&nbsp;<br><b>click to close window</b></a></font></center></body></html>' );
	NewWin[i].document.close();

	i++;
}
