function view(name) {

var w = 640, h = 480;

if (document.all || document.layers || document.getElementById) {

   h = (screen.availHeight)-30;
	w = (screen.availHeight / 3)*4;

}


window.open(name,'','toolbar=no,top=0,left=0,screenX=0,screenY=0,toolbar=0,location=0,directories=0,status=no,scrollbars=no,menubar=0,resizable=yes,width='+w+',height='+h);

}
