// enviarCV.js

var nom = '';
var telf = '';
var mail = '';
var cv = '';

function enviarCV(idioma,n,t,m,c) {
	nom = n;
	telf = t;
	mail = m;
	cv = c;
	while(cv.indexOf('/n')!=-1) {
		cv = cv.replace('/n','\n');
	};

	var url = (idioma=='0') ? 'enviarCV.html' : 'enviarCVcas.html';
	winF = open(url,'arsettcv','top=100,left=100,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width=200,height=200');
};


function sayFormOK() {
	winF.close();
	get_movie_object().SetVariable('_global.formsended','1');
};


function get_movie_object(){
	var o;
	if (document.getElementById) o = document.getElementById('intro');
	else o = document.all['intro'];
	return o;
}


