function pop( id ) {
		var page;
		var name;
		var w;
		var h;
		
		switch (id) {
		
			case "monte":
				page = "http://icc.volkswagen.com/cc5-br/preselect.aspx?process=clc2&template=novo_voyage&context=default&app=ICC-BR-PT";
				name = "CC5";
				w = 800;
				h = 600;
				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();
		}
}