function previewImg( img, x, y )
{
	var popupWnd = window.open('', 'newImgWin', 'toolbar=no, scrollbars=no, width='+ x +', height='+ y +'');
	popupWnd.document.open();
	popupWnd.document.write('<html><head><title>'+ img  +'</title></head>');
	popupWnd.document.write('<body topmargin="0" leftmargin="0" rightmargin="0" bgcolor="#000001"><center>');
	popupWnd.document.write('<a href="javascript:self.close()">');
	popupWnd.document.write('<img src="images/site/projects/' + img + '" border="0">');
	popupWnd.document.write('</a></center></body></html>');
	popupWnd.document.close();

	popupWnd.focus();
}
