');
}
function browserpopup(){
windowwidth=400;
windowheight=300;
var x = (screen.width-windowwidth)/2;
var y = ((screen.height-windowheight)/2)-20;
popupwindow = window.open("browser.html", "Browser","width="+windowwidth+",height="+windowheight+",resizable=no,scrollbars=no,toolbar=no,status=no,directories=no,menubar=no,location=no");
popupwindow.moveTo(x,y);
popupwindow.focus();
}