

//
if (isMobile()) {
	window.location.href = '/mobile';
} else if (!DetectFlashVer(9, 0, 0)) {
	window.location.href = '/no-flash';
} else {
	$(document).ready(function(){
			innerFlash();	
	});
}

function innerFlash(){
	$('#main').css('display', 'block');
	$('#main-media').media({
		version: '8,0', width: '100%', height: '100%', autoplay: true, src: 'swf/experiencia/site.swf',	caption: false,
		attrs: { id: 'flashSite'},
		params: {
			allowScriptAccess: 'sameDomain',
			bgColor:"#000000",
			quality: 'high',
			allowFullScreen: true
		}
	});
}

function isMobile(){
	if (screen.width < 400){
		return true;
	}
}

function isNewWindow(){
	//if (screen.width > maxWidth || screen.height < maxHeight){
		return false;
	//}
}