
function openwindow(page,name,w,h,st,res,l,t,img)
	{	
	foto1= new Image();
	foto1.src=(img);
	
	w=foto1.width + 20;
	h=foto1.height + 25;
	
	if (w == 20) {w = 500}
	if (h == 25) {h = 500}
	
	str="width="+w+",height="+h+",status="+st+",resizable="+res+",left="+l+",top="+t;
	w=window.open(page,name,str);
	w.focus();
	}
