﻿window.onload = function ()
{
    focusInput('focusInput','normalInput','mouseoverInput','normalInput','focusSelect','normalSelect');
//    ResizePage();
}
//function ResizePage()
//{
//    var ScreenWidth=screen.availWidth;
//    var ScreenHeight=screen.availHeight;
//    document.body.style.height=ScreenHeight-150;
//    document.body.style.width=ScreenWidth-20;
//}
function SetFocus(Control)
{
    document.getElementById(Control).focus();
}

function checkInput1(button)
{
    return checkInput('form1');
}

function SelectAll(ID,checkboxID)
{
    var CheckArray= document.getElementById(ID).getElementsByTagName("input");
    for(var i=0; i<CheckArray.length; i++)
    {
        CheckArray[i].checked=document.getElementById(checkboxID).checked;
//        CheckArray[i].checked=document.getElementById("checkbox_SelectAll").checked;
    }
}
