<!--
function opennew(img,des,x,y) {
  // path, width and height as arguments
  var msgWindow = window.open('','','Width=' + x + ',Height=' + y + 'resizable=no');
  var page='';
	tPage="";
	tPage=tPage+"<html>\n";
	tPage=tPage+"<head>\n";
	tPage=tPage+"<title>::"+des+"::</title>\n";
	tPage=tPage+"<\/head>\n";
	tPage=tPage+"<body bgcolor=\"#000000\" scrolling=\"no\" topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" noresize>\n";
	tPage=tPage+"<center><a href=\"javascript:window.close()\"><img src=\""+img+"\" border=\"0\"><\/center>";
	tPage=tPage+"<\/body>\n";
	tPage=tPage+"<\/html>\n";
  msgWindow.document.open();
  msgWindow.document.write(tPage);
  msgWindow.document.close();
}
//-->