var idPopup = 0;

function popup(url, width, height, scrollbars, popupName) {
	if (width == undefined) {
		width = 640;
	}
	if (height == undefined) {
		height = 480;
	}
	if (scrollbars == undefined) {
		scrollbars = false;
	}
	if (popupName == undefined) {
		popupName = "popup" + idPopup;
		idPopup ++;
	}
	scrollbars = (scrollbars == true) ? "yes" : "no";
	window.open(url, popupName, "width=" + width + ", height=" + height + ", left=" + ((screen.width - width) / 2) + ", top=" + ((screen.height - height) / 2) + "resizable=" + scrollbars + ",scrollbars=" + scrollbars + ",toolbar=no,menubar=no,location=no,directories=no,status=yes");
}
function PopUpAutoSiempre(){
	popup("/popup/AutoSiempre/AutoSiempre.html", 450, 650, true,"win");
}
function PopUpRacingTeam(){
	popup("/popup/RacingTeam/RacingTeam.html", 820, 670, true, "win");
}
