﻿
function ToolTip(strText, blnStatus) 
{
    var intWidth;
    var strStatusBar;
    intWidth = parseInt(strText.length * 5.6) + 20;
    if(intWidth > 240){
        intWidth = 240;
    }
    if(blnStatus == 0){
        strStatusBar = ''; 
    }else{
        strStatusBar = AUTOSTATUS; 
    }
    return overlib(strText,FGCOLOR,'#FFFFFF',BGCOLOR,'#426598',TEXTCOLOR,'#426598',WIDTH,intWidth,strStatusBar,DELAY,100);
}

function OpenPopupDetalhesPreco()
{
    newwindow = window.open("/Detalhes_Preco.htm",'','width=300,height=300,resizable=no, menubar=no, scrollbars=no, status=no, toolbar=no');
	if (window.focus) {newwindow.focus()}
	return false;

}

function CheckCondGerVendas()
{
    if (document.getElementById("ctl00_ContentPlaceHolder1_chkCondVendas").checked)
        return true;
    else
    {
        alert("Para continuar com a encomenda tem que acordar com as condições gerais de vendas");
        return false;
    }
}