function OpenPopup(i)
{
    window.open('PopupImage.aspx?cid='+i,'popup','width=600,height=800,status=1,toolbar=0,menubar=0,directories=0,scrollbars=0,resizeable=0');
}

function OpenPopupPage(i)
{
    window.open('PopupImage.aspx?cid='+i,'popup','width=600,height=800,status=1,toolbar=0,menubar=0,directories=0,scrollbars=0,resizeable=0');
}

function ShowMessage(strMessage)
{
    alert(strMessage);
    return false;
}

function ShowPopup()
{
    window.open('http://www.promofactory.ro/IndexPopup.aspx','popup','width=280,height=280,status=1,toolbar=0,menubar=0,directories=0,scrollbars=0,resizeable=0');
}
function DeleteEmailText(control)
{
    //var txtEmail = document.getElementById(control);
    if (control.value == "adresa ta de e-mail")
        control.value = "";
    
}
function changeTab(div)
{
    resetTab();
    document.getElementById('t'+div).className="tabhl";   
    document.getElementById('div'+div).style.display="inline";
    
    return false;
}

function resetTab()
{
    document.getElementById('divMuszaki').style.display="none";
    document.getElementById('divKenyelmi').style.display="none";
    document.getElementById('divBiztonsag').style.display="none";
    document.getElementById('divEgyeb').style.display="none";
    
    document.getElementById('tMuszaki').className="tab";
    document.getElementById('tKenyelmi').className="tab";
    document.getElementById('tBiztonsag').className="tab";
    document.getElementById('tEgyeb').className="tab";
}