﻿function openPopUp(URL, W, H)
 {
		if (screen.width == 800) 
		{
		    window.open(URL,null,"scrollbars=no, null, null, width="+W+", height="+H+", left=0, top=0")
		}
		else
		{ 
			window.open(URL,null,"scrollbars=no, null, null, width="+W+", height="+H+", left="+(window.screen.width-W)/2+", top="+(window.screen.height-H)/2)
		}
}

function changeColorTR(objeto,corHexadecimal)
{
    objeto.style.backgroundColor = corHexadecimal;
}

function goToPage(url)
{
    this.window.location.href = url;
}

function ocultaDivPopup()
{
    var objeto = this.window.document.getElementById('divPopUp');
    if (objeto != null)
    {
        objeto.style.visibility = 'hidden';
        objeto.style.display    = '';    
    }
}

function showGoogleMap(endereco)
{
    var url = './GoogleMap.aspx?address='+endereco;
 
    window.open(url,'GoogleMap',"scrollbars=no, null, null, width=620, height=501, left=150, top=100");
}