function windowOpen(url,windowName,windowWidth,windowHeight)
{
html = window.open(url,windowName,"resizeable=0,scrollbars=0,width="+windowWidth+",height="+windowHeight);
//html.document.belepesForm.referrer.value=window.location;
}
//---------------------------------------------------------
function onFormListChange(formList)
{
formList.options[formList.selectedIndex].style.backgroundColor='#FFCC00';
}
//---------------------------------------------------------
function scrollWindowOpen(url,windowName,windowWidth,windowHeight)
{
html = window.open(url,windowName,"resizeable=0,scrollbars=1,width="+windowWidth+",height="+windowHeight);
}
