//Adjust size of main frame
function OnPageLoad()
{
    var element;
    var NavName;
    var ScrollY;
    NavName=navigator.appName;
    element=window.parent.document.getElementById("info");
    if(element!=null)
    {
        if(NavName=="Microsoft Internet Explorer")
            element.style.height=document.body.scrollHeight+"px";
        else if(NavName=="Opera")
            element.style.height=document.documentElement.clientHeight+"px";
        else
        {
            element.style.height=document.height+"px";
            ScrollY=window.scrollY;
            window.scrollTo(0,0);
            element=window.parent;
            element.scrollTo(0,ScrollY);
        }
    }
}


function SetLang()
{
    var NavName;
    var Lang="en";
    NavName=navigator.appName;
    if(NavName=="Microsoft Internet Explorer")
        Lang=navigator.userLanguage;
    else
        Lang=navigator.language;
    if(Lang=="ru")
        document.location.href="rus/main.htm";
    else
        document.location.href="main.htm";
}

/*
function Validate()
{
    var TextField;
    var TextField1;
    TextField=document.getElementById("Company");
    if(TextField.value=="")
    {
        window.alert("Введите название компании");
        TextField.style.backgroundColor="#FDD6B3";
        TextField.focus();
        return false;
    }
    TextField.style.backgroundColor="#FFFFFF";
    TextField=document.getElementById("Person");
    if(TextField.value=="")
    {
        window.alert("Введите Фамилию Имя Отчество контактной персоны");
        TextField.style.backgroundColor="#FDD6B3";
        TextField.focus();
        return false;
    }
    TextField.style.backgroundColor="#FFFFFF";
    TextField=document.getElementById("Phone");
    TextField1=document.getElementById("eMale");
    if(TextField.value=="" && TextField1.value=="")
    {
        window.alert("Введите телефон или адрес электронной почты для контакта");
        TextField.style.backgroundColor="#FDD6B3";
        TextField1.style.backgroundColor="#FDD6B3";
        TextField.focus();
        return false;
    }
    TextField.style.backgroundColor="#FFFFFF";
    TextField1.style.backgroundColor="#FFFFFF";
    TextField=document.getElementById("Message");
    if(TextField.value=="")
    {
        window.alert("Введите текст сообщения описывающий Ваш заказ или предложение");
        TextField.style.backgroundColor="#FDD6B3";
        TextField.focus();
        return false;
    }
    TextField.style.backgroundColor="#FFFFFF";
    return true;
}
*/
