<!--
function openNewWindow(theURL,winName,width,height,top,left,scroll,resize, status) {
	myWindow = window.open(theURL,winName,'toolbar=no,location=no,directories=no,status='+ status +',menubar=no,scrollbars=' + scroll + ',resizable=' + resize + ',copyhistory=no,width=' + width + ',height=' + height + ',screenX=0,screenY=0,top=' + top + ',left=' + left +'');
	myWindow.focus();
}
//-->
