﻿$(function() {

});

function btnNews_onclick(txtEmailId, txtNameId) {
    var auxEmail = document.getElementById(txtEmailId).value;
    var auxName = document.getElementById(txtNameId).value;
    pLX = 592;
    pAY = 206;
    xx = parseInt(((screen.width - pLX - 8) / 2));
    yy = parseInt(((screen.height - pAY - 15) / 2));
    pUrl = 'newsletter.aspx?email=' + auxEmail + '&name=' + auxName;
    pTit = 'Avise-me';
    s = window.open(pUrl, '', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=' + pLX + ',height=' + pAY + ',top=' + yy + ',left=' + xx + ',screenX=' + xx + ',screenY=' + yy);
}

function btnOnlineSupport_onclick(txtEmailId, txtNameId) {
    var auxEmail = document.getElementById(txtEmailId).value;
    var auxName = document.getElementById(txtNameId).value;
    pLX = 592;
    pAY = 592;
    xx = parseInt(((screen.width - pLX - 8) / 2));
    yy = parseInt(((screen.height - pAY - 15) / 2));
    pUrl = 'OnlineSupport.aspx';
    pTit = 'Atendimento On Line';
    s = window.open(pUrl, '', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=' + pLX + ',height=' + pAY + ',top=' + yy + ',left=' + xx + ',screenX=' + xx + ',screenY=' + yy);
}

function Enter() {
	var enter;
	enter = true;
	document.onkeypress = Go;
	
	function Go(evt)
	{
        var isDOM 	= (document.getElementById && !document.all) ? true : false;
		var tecla;
		
		if (isDOM)
			tecla = evt.which;             
		else
			tecla = event.keyCode; 
		if (tecla == 13 && enter == true)
		{	
			if(isDOM)
					evt.preventDefault();
				else
					event.returnValue = false;
		}
	}	
}
