function registro() {
	popUpw('http://contacto.gm.interalia.net/register?id=11', 760, 550);
}

function legal() {
	popUpw('http://www.gm.com.mx/content_data/LAAM/MX/es/GMMGM/flash/corporate/legal.htm', 300, 400);
}

function privacidad() {
	popUpw('http://www.gm.com.mx/content_data/LAAM/MX/es/GMMGM/flash/corporate/privacidad.htm', 300, 400);
}

function ayuda() {
	popUpw('http://contacto.gm.interalia.net/faq?type=c', 760, 550);
}

//-----------------------------------------

function popUpw(url, wW, wH){ 
	var
	wX = (screen.width - wW)/2,
	wY = (screen.height - wH)/2,
	other = ',toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no',
	windowFeatures = 'width=' + wW + ',height=' + wH + ',left=' + wX + ',top=' + wY + other;

	window.open(url, 'ventana' + randRange(1, 100000), windowFeatures);
}

function popUpCarrusel(url1, url2) {
	// Detalle en Brandsite
	var brandsiteDefinido = ((url1 != null) && (url1 != ""))
	if (brandsiteDefinido) window.open(url1);

	// Micrositio
	window.open(url2);
}

function randRange(min, max) {
    var randomNum = Math.floor(Math.random() * (max - min + 1)) + min;
    return randomNum;
}
