﻿function $getElement(Elm)
{
    return document.getElementById(Elm);
}
function $getElement(Id)
{
    var Elm = document.getElementById(Id);
    
    if(!Elm)
        Elm = $q("[id$='_" + Id + "']")[0];
        
    return Elm;
}
function OpenContactForm()
{
    var Left;
    var Top;
    var Width = 630;
    var Height = 510;
    var Properties;

    Left = (screen.width / 2) - (Width / 2);
    Top = (screen.height /2) - (Height / 2) - 50;
    Properties = "height=" + Height + ",width=" + Width + ",left=" + Left + ",top=" + Top + ",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no,scrollbars=yes";

    window.open("/Contato/Default.aspx", "", Properties);
}


function OpenQuoteForm()
{
    var Left;
    var Top;
    var Width = 630;
    var Height = 510;
    var Properties;

    Left = (screen.width / 2) - (Width / 2);
    Top = (screen.height /2) - (Height / 2) - 50;
    Properties = "height=" + Height + ",width=" + Width + ",left=" + Left + ",top=" + Top + ",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no,scrollbars=yes";

    window.open("/Contato/Orcamento.aspx", "", Properties);
}

function Indique()
{
    var NovaJanelaLeftS;
    var NovaJanelaTopS;
    var NovaJanelaWidthS = 630;
    var NovaJanelaHeightS = 510;
    var NovaJanelaPropS;

    NovaJanelaLeftS = (screen.width / 2) - (NovaJanelaWidthS / 2);
    NovaJanelaTopS = (screen.height /2) - (NovaJanelaHeightS / 2) - 50;
    NovaJanelaPropS = "height=" + NovaJanelaHeightS + ",width=" + NovaJanelaWidthS + ",left=" + NovaJanelaLeftS + ",top=" + NovaJanelaTopS + ",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no,scrollbars=yes";

    window.open("/Indique/Default.aspx","",NovaJanelaPropS);
}
