function po(page)
{ 
   w=window.open(page,'se','scrollbars=yes,width=400,height=500,resizable=no');
   w.focus();
	
}

function po2(page)
{
   w=window.open(page,'se','scrollbars=yes,width=567,height=420,resizable=yes');
   w.focus();
	
}

function po3(page)
{
   w=window.open(page,'se','scrollbars=yes,width=567,height=480,resizable=yes');
   w.focus();
	
}

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}//
function updateParent(newURL) { 
opener.document.location = newURL
opener.focus()
}
