function select_in_this_window( formelement )
{
    var formindex=formelement.selectedIndex;
    if( formindex > 0 ) {
	var okno=formelement.options[formindex].value;
	if( okno.length > 0 ) { newwindow = window.open(okno, "_top"); }
    }
}

function formwindow(formname,targetname)
{
     document.forms[formname].target = targetname;
     return true;
}

function resizeWin(newLoc, newHeight, newWidth)
{
    newWin = open("",newLoc,"scrollbars=no,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
}
