
// use flash_detect.js to return the Flash version
var flashVersion = getFlashVersion();

// Redirect to appropriate page
if (flashVersion >= requiredFlashVersion) 
{
	//alert("Bienvenido al sitio oficial de PROARCA\n Welcome to the official website of PROARCA");
	//alert("Usted tiene el Flash Plugin necesario para ver este sitio! \n You already have the Flash Plugin needed to view this site.");
}
//location.replace(hasFlashURL);
else if (flashVersion > 0) 
{
	alert("La version de su Flash Player es muy antigua, necesita hacer un update. Sera direccionado automaticamente.\n Your Flash Player Plugin needs to be upgraded, you will be redirected automatically.");
	var win2 = window.open("http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash","Window2","");
	win2.focus();	
}
else if (flashVersion == 0) 
{
	alert("No tiene instalado el Flash Player Plugin. Sera direccionado automaticamente.\n You don't have installed the Flash Player Plugin, you will be redirected automatically.");
	var win2 = window.open("http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash","Window2","");
	win2.focus();	
}
else if (flashVersion == flashVersion_DONTKNOW || flashVersion == null)
{
	alert("Porfavor bajar Flash Player Plugin, sera direccionado automaticamente. \n Please download Flash Player Plugin, you will be redirected to the downloads page.");
	var win2 = window.open("http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash","Window2","");
	win2.focus();	
}
else if (flashVersion == 7) 
{
	alert("PRUEBA");
		
}