function viewPedidoInformacao(npixeis){
	document.getElementById('divMapaLocal').style.left="-1000px";
	document.getElementById('divFotosEmpreend').style.left="-1000px";
	document.getElementById('divAreasEmpreend').style.left="-1000px";
	
	npixeisTop = yMousePos - 325;
	
	if(npixeisTop < 225)
		npixeisTop = 225;
		
	document.getElementById('divPedidoInformacao').style.top = npixeisTop+"px";
	
	if(screen.width > 1024)
		document.getElementById('divPedidoInformacao').style.left = (npixeis+50)+"px";
	else if(screen.width <= 800)
		document.getElementById('divPedidoInformacao').style.left = (npixeis-120)+"px";
	else
		document.getElementById('divPedidoInformacao').style.left = npixeis+"px";
}
	
function validaPedidoInfo(){
	reg = /^[\w-]+(\.[\w-]+)*@(([\w-]{2,63}\.)+[A-Za-z]{2,6}|\[\d{1,3}(\.\d{1,3}){3}\])$/;
		
	if(Trim(document.getElementById('nome').value).length == 0) {
	  alert("Por favor, preencha o Nome.");        
		document.getElementById('nome').focus();
		return false;
	}
	  
	if(document.getElementById('telefone').value.length < 9 || !(IsDigit(document.getElementById('telefone').value))) {
		alert("Por favor, preencha o Telefone correctamente.\nDeve ser um número de 9 algarismos.");        
		document.getElementById('telefone').focus();
		return false;
	}
  
	if(!isEmptyString(document.getElementById('email').value) && !reg.test(document.getElementById('email').value)){
		alert("Por favor, preencha o email correctamente. \nex: antonio@lojas.com.pt");        
		document.getElementById('email').focus();
		return false;
	}
	
	return true;
}	

function viewPedidoInformacaoServicos(npixeis){	
	npixeisTop = yMousePos - 325;
	if(npixeisTop < 235)
		npixeisTop = 235;
				
	document.getElementById('divPedidoInformacao').style.top = npixeisTop+"px";
	
	if(screen.width > 1024)
		document.getElementById('divPedidoInformacao').style.left = (npixeis+50)+"px";
	else if(screen.width <= 800)
		document.getElementById('divPedidoInformacao').style.left = (npixeis-120)+"px";
	else
		document.getElementById('divPedidoInformacao').style.left = npixeis+"px";
		
//	document.getElementById('divPedidoInformacao').style.left = npixeis+"px";
}

function viewPedidoInformacaoLst(empresa_id, npixeis){	
	npixeisTop = yMousePos - 325;
	if(npixeisTop < 235)
		npixeisTop = 235;
	
	document.getElementById('divPedidoInformacaoLst').style.top = npixeisTop+"px";
	
	if(screen.width > 1024)
		document.getElementById('divPedidoInformacaoLst').style.left = (npixeis+50)+"px";
	else if(screen.width <= 800)
		document.getElementById('divPedidoInformacaoLst').style.left = (npixeis-120)+"px";
	else
		document.getElementById('divPedidoInformacaoLst').style.left = npixeis+"px";
		
//	document.getElementById('divPedidoInformacaoLst').style.left = npixeis+"px";
	
	try{
		
		document.getElementById('empresaId').value = document.getElementById('empresa_id'+empresa_id).value;
	}catch(e){}
	try{
		document.getElementById('empresaNome').value = document.getElementById('empresa_nome'+empresa_id).value;
	}catch(e){}
	try{
		document.getElementById('empresaEmail').value = document.getElementById('empresa_email'+empresa_id).value;
	}catch(e){}
	try{
		document.getElementById('tipoPedido').value = document.getElementById('tipo_pedido'+empresa_id).value;
	}catch(e){}
}

function viewPedidoInformacaoFraccoes(npixeis){	
	document.getElementById('divFotosEmpreend').style.left="-1000px";
	npixeisTop = yMousePos - 325;
	if(npixeisTop < 245)
		npixeisTop = 245;
	document.getElementById('divPedidoInformacao').style.top = npixeisTop+"px";
	
	if(screen.width > 1024)
		document.getElementById('divPedidoInformacao').style.left = (npixeis+50)+"px";
	else if(screen.width <= 800)
		document.getElementById('divPedidoInformacao').style.left = (npixeis-120)+"px";
	else
		document.getElementById('divPedidoInformacao').style.left = npixeis+"px";
		
	//document.getElementById('divPedidoInformacao').style.left = npixeis+"px";
}
