function zoom(link, wName, w, h, scroll) {
	var clientHt = window.screen.height;
	var clientWt = window.screen.width;
	//alert (((clientHt/2)-(h/2)) +"-"+ ((clientWt/2)-(w/2)));
	newWin = window.open(link, wName, 'scrollbars='+scroll+', resizable=yes, width='+w+', height='+h+', location=no, toolbar=no, menubar=no, left='+((clientWt/2)-(w/2))+',top='+((clientHt/2)-(h/2))+'');
	//newWin.moveTo( (clientWt/2)-(w/2) , (clientHt/2)-(h/2) );
	//newWin.resizeTo(w,h);
}