	function ind_win(_width,pag)
	{
		var options = "width="+_width+",scollbars=no,statusbar=no,menubar=no,toolbar=no";
		mywindow = window.open('',"popupimg",options);
	}
    function popup(file,width,height)
	{
        var options = "top=0,left=0,width="+width+",height="+height+",scollbar=no,status=no,menubar=no,toolbar=no";
        var pop = window.open("","", options);
        pop.document.write("<html>\n");
        pop.document.write("<body>\n");
        pop.document.write("<div><img src="+file+"></div>\n");
        pop.document.write("</body>\n");
        pop.document.write("</html>");
	}