<!--
var newWin=null;
var onscreen=false;

function pixWin(url) {

	var bWidth = (document.body.clientWidth - 670);
	
	newWin=window.open(url,'pix','screenX='+bWidth+',screenY=40,left='+bWidth+',top=40,width=600,height=630,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no' );
	newWin.focus();
	onscreen=true;
}
//-->
