function footErrors() {
return true;
}
window.onerror = footErrors;

function openWindow(url) {
  popupWin = window.open(url, 'remote', 'resizable,titlebars=yes,scrollbars=1,top=75,left=100,width=650,height=600')
}


function openWindow2(url) {
LeftPosition = (screen.width-width)/2; 
TopPosition = (screen.height-(height+110))/2; 
popupWin = window.open(url, 'remote', 'resizable,titlebars=yes,scrollbars=1,height=600,width=650,top="+TopPosition+",left="+LeftPosition+"')
}


function closeUpdate() {  
if (navigator.appName != "Microsoft Internet Explorer")
                        { navigator.plugins.refresh(true); }
self.close();
return true;
}
	

function go(url) {
opener.location.href = url;
}

