function monte(){
	//var page = "http://icc.volkswagen.com/cc5-br/preselect.aspx?process=clc2&template=saveiro&context=default&app=ICC-BR-PT";
	var page = "http://icc.volkswagen.com/cc5-br/preselect.aspx?process=clc2&template=nova_saveiro&context=default&app=ICC-BR-PT";
	var name = "monte";
	var w = 800;
	var h = 650;
	pop( page, name, w, h );
}

function termos(){
	var page = "http://saveiro2009.tempsite.ws/termos_de_uso.html";
	var name = "termos";
	var w = 630;
	var h = 480;
	pop( page, name, w, h );
}

function pop( page, name, w, h ){
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	var settings = 'height=' + h + ',';
	settings += 'width=' + w + ',';
	settings += 'top=' + wint + ',';
	settings += 'left=' + winl + ',';
	settings += 'location=no,';
	settings += 'status=no,';
	settings += 'scrollbars=1,';
	settings += 'titlebar=no';
	
	var win = window.open(page,name,settings);
	if(window.focus){
		win.focus();
	}
}