function pop( id ) {
		var page;
		var name;
		var w;
		var h;
		
		switch (id) {
		
			case "monte":
				page = "http://icc.volkswagen.com/cc5-br/configurator/fs_base.aspx?context=default&app=ICC-BR-PT&template=novo_fox&process=clc2";
				name = "CC5";
				w = 800;
				h = 650;
				break;

			case "termos":
				var page = "termos_de_uso.html";
				var name = "termos";
				var w = 630;
				var h = 480;
				break;
				
		}
		
		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();
		}
}

function track( tag ){
	pageTracker._trackPageview( tag );
}

function trackOmniture( pageName, events, channel ){
	s.pageName = pageName;
	s.channel = channel;
	s.events = events;
	s.t();
}

function openSite() {
	location.href='site.html';
	//window.open('site.html');
	//location.href='vw_avesso.html';
}