function getSelectValue(selectObject)
{
    return selectObject.options[selectObject.selectedIndex].value
}
function sendCommand( s )
{
    location.href = s;
}

function NewWindow(wname){
window.open(wname,"NewDisplay",'toolbar=0,location=0,directories=0,status=0,resizable=0,scrollbars=1,scrolling=0,menubar=0,width=550,height=300,');
}

function NewWindow2(wname){
window.open(wname,"NewDisplay",'toolbar=0,location=0,directories=0,status=0,resizable=0,scrollbars=1,scrolling=0,menubar=0,width=625,height=600,');

}
function NewWindow_S(wname,w,h){
aw = (w-0)+40;
ah = (h-0)+20;
wstyle = "toolbar=0,location=0,directories=0,status=0,resizable=1,scrollbars=1,scrolling=0,menubar=1,width=" + aw + ",height=" + ah;
window.open(wname,"NewDisplay",wstyle);
}
