function show(title,ima,w,h)
{
	pict = window.open('', 0, 'resible=no,scrolling=no,width='+w+',height='+h);
//	alert (navigator.vendor);
	if (navigator.vendor == "Firefox") {
		pict.resizeTo(w+6, h+51);
	} else {
		pict.resizeTo(w+10, h+29);	
	}
	var p = setTimeout("load_html('"+title+"','"+ima+"',"+w+","+h+",pict)",500);
//	load_html(title,ima,w,h,pict);
}

function load_html(title,ima,w,h,pict)
{
	if (pict.document.title == "") { 
		pict.document.write("<html><head><meta content='text/html'><title>"+title+"</title></head>");
		pict.document.write("<body marginheight='0' topmargin='0' marginwidth='0' leftmargin='0'>");
		pict.document.write("<p style='margin: 0'><a href=javascript:close()><img src='' name='im' width='"+w+"' height='"+h+"' border=0></a></p></body></html>");
	}
	pict.document.title = title
	pict.document.im.width = w;
	pict.document.im.height = h;	
	pict.document.im.src = ima;
	pict.document.im.alt = title;
	pict.focus();
}