    <!--
    function newWindow(popup,width,height) {
	leftpos = 0;
	if (screen) { 
		leftpos = screen.width - 300 ;     //Makes sure the browser can handle this request
	}
		popTallWindow = window.open(popup, 'popwin', 'width='+width+',height='+height+',scrollbars=yes, resizable=yes');
		popTallWindow.focus();
}
	
    //-->