function imgopen(imgf, w, h, text)
{
	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+"\"><br><div style=\"height:45px; background-color:black; color:white; padding:3px;	font-family:Arial; font-size:.8em;\">"+text+"</div>"
 +"</body>"
 +"</html>";

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