/*function display_popup(myimage,w,h) {
 html = "<HTML><HEAD><TITLE>Preview / Nhad</TITLE>" +
		 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\">" +
        "</HEAD><BODY style=\"margin:0px; padding=0px;\">" +
        "<IMG SRC='" + myimage + "' BORDER=0 NAME=image " +
        "width='"+w+"' height='"+h+"' ></BODY></HTML>";
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable';
 popup=window.open('','_blank',settings);
 popup.document.open();
 popup.document.write(html);
 popup.focus();
 popup.document.close()
 };*/
 
 function display_popup(myimage,w,h,title) {
 html = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"" +
		"\"http://www.w3.org/TR/html4/loose.dtd\">" +
 		"<HTML><HEAD><TITLE>"+title+"</TITLE>" +
		"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\">" +
		"</HEAD><BODY style=\"margin:0px;padding:0px;\">" +
		"<div class=\"image\" style=\"width:"+w+"px; height:"+h+"px;\"><img src='" + myimage + "' width='"+w+"' height='"+h+"' border='0' onclick=\"javascript:window.close()\" onmouseover=\"this.style.cursor='pointer';\">" +
		"</div></BODY></HTML>";
		
		
		
		 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		 //h = 30;
		// w = 30;
		 settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable';
		 popup=window.open('','_blank',settings);
		 popup.document.open();
		 popup.document.write(html);
		 popup.focus();
		 popup.document.close();
		 return false;
 };
 