function newWindow(location,sizex, sizey) {
portalWin=window.open(location, 'openedWindow', 'menubar=0,toolbar=1,scrollbars=1,resizable=yes,width=' + sizex + ',height=' + sizey);
portalWin.focus()
}

function openWin(location){
newWin=window.open(location, 'win1', 'menubar=0,toolbar=0,scrollbars=1,resizable=yes,width=800,height=700');
newWin.focus()
}