<!-- 

function foto(url,largura,altura) {

	posEsq     = (window.screen.width-largura)/2;
	posDir     = (window.screen.height-altura)/2;
	nome       = 'fotosGp';
	parametros = "toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width="+largura+",height="+altura+",left="+posEsq+",top="+posDir+"'";

	window.open('/tour2005_br163/'+url, nome, parametros);
	
}

function prev(theForm, theAction) {
	
	/*
	Actions: 1 = Preview
			 2 = Enviar
	*/
			 
	if (checkForm(document.forms['send_card']) == false) {
		return false;
	}
	
	if (theAction == 1) {
		document.forms['send_card'].action = "webcards_preview.php";
	}
	if (theAction == 2) {
		document.forms['send_card'].action = "webcards_envio.php";
	}
    document.forms['send_card'].submit();
}
//-->