﻿// JScript File

function abreChat()
{
    window.open ('chat/loginChat.aspx', 'chat', 'width=400,height=530');
}

function DesabilitaCtrlC()
{
    var ctrl=window.event.ctrlKey;
    var tecla=window.event.keyCode;
    
    if (ctrl && tecla==67)
    {
        event.keyCode=0;
        event.returnValue=false;
    }
}

function DesabilitaMenu() 
{
    if (event.button==2 || event.button==3)
    {
        return false;
    }
}


function Redireciona()
{
    if(confirm('Para ver os hospitais e laboratórios é necessário estar logado.'))
    {
        window.location = 'login.aspx';
    }
    else{ return;}
}


