function jumpto(sUrl) {

var sName = "_jump";
var iWidth = screen.width - 10;
var iHeight = screen.height - 90;
var sFeatures = "width=" + iWidth + ",height=" + iHeight + ",left=0,top=0,resizeable=1,toolbar=1,scrollbars=1,menubar=0,status=0,directories=0";

window.open(sUrl, sName, sFeatures);
}