
function setFrame(frame,from,css) {

frames[frame].document.writeln("<link rel=stylesheet href='"+css+"'><body leftmargin=0 rightmargin=0>");
frames[frame].document.writeln(document.getElementById(from).innerHTML);
frames[frame].document.writeln("</body></html>");
frames[frame].document.close();

}

function showImg (img,w,h) {
win=window.open('',"_blank",
	"height="+(h)+
	" , width="+(w)+
	" , left="+Math.round(screen.availWidth/2-w/2)+
	" , top="+Math.round(screen.availHeight/2-h/2)+
	" , scrollbars=no"+
	""
	);
with (win.document) {
  writeln("<html><body leftmargin=0 topmargin=0><img src='"+img+"' border=0 width="+w+" height="+h+"></body></html>");
  close();
  }

}