<!-- Begin
var height = screen.height;
var width = screen.width;
var leftpos = width / 2 - 50;
var toppos = height / 2 - 50;
function encode(str){ // Netscape fix
 return escape(str.replace('/ /g','+'));
}
function view(what) {
 var isnn = 'no';
 if (navigator.appName=="Netscape") {isnn = 'yes';}
 var url = '/common/view.asp?pic='+encode(what);
 window.open(url,'VIEWWIN','scrollbars='+isnn+',status=no,toolbar=no,resizable=yes,location=no,menu=no,width=100,height=100,left=' + leftpos + ',top=' + toppos);}
//  End -->

