var win = null;

function NewWindow(mypage,myname,file,w,h,title,scroll){
	
	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='+scroll+',resizable'
	
	win = window.open(mypage,myname,settings)
	
	win.document.write("<html>\n")
	win.document.write("<head>\n")
	win.document.write("<title>Harta Standard Plastica - " + title + "</title>\n")
	win.document.write("<style type='text/css'>\n")
	win.document.write("#poza{\n\t")
	win.document.write("width:514px; height:348px;\n\t")
	win.document.write("border:1px #333333 solid;\n\t")
	win.document.write("cursor:pointer;\n")
    win.document.write("}\n")
	win.document.write("</style>\n")
	win.document.write("</head>\n")
	win.document.write("<body>\n")
	win.document.write("<p align='center'>\n\t<b>" + title + "</b>\n</p>\n")
	win.document.write("<p align='center' style='margin-top:0px;'>\n\t<img src='"+ file +"' id='poza' onClick='self.close()' title='Inchide' />\n</p>\n")
	win.document.write("<p align='center'>\n\t<input type='button' href='javascript:void(0)' onClick='self.close()' value='Inchide' />\n</p>\n")
	win.document.write("</body>\n")
	win.document.write("</html>")
	
	win.document.close()
}
