function imgopen(imgf, w, h)
{
	rand_id='image'+(Math.round(Math.random()*1000));

	outf="<html>"
 +"<head>"
 +"<title>Habil &#399;liyev</title>"
 +"</head>"
 +"<body style=\"margin:0; padding:0;\">"
 +"<img src=\""+imgf+"\">"
 +"</body>"
 +"</html>";

	iwin = window.open('', rand_id, 'width='+w+',height='+h+',top=100,left=200');
	iwin.document.write(outf);
	iwin.focus();

}