function deschide(url,nume,w,h){
	var optiuni='height='+h+',width='+w+',left=0,top=0,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	window.open(url,nume,optiuni);
}

function deschideImg(img,title,w,h){
	var optiuni='height='+h+',width='+w+',left=0,top=0,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open('','popup',optiuni);

	win.document.write('<html>');
	win.document.write('<head>');
	win.document.write('<title>');
	win.document.write(title);
	win.document.write('</title>');
	win.document.write('</head>');
	win.document.write('<BODY style="{margin-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-right: 0px;}">');
	win.document.write('<img width="'+w+'" height="'+h+'" style="{margin-left=0px;margin-top=0px;margin-bottom=0px;margin-right=0px;}" border="0" src="'+img+'">');
	win.document.write('</body></html>');
}
