﻿// Carrega o flash de acordo com a resolução da tela
var altura;
var largura;
//if (screen){	
	if (screen.width<=800||screen.height<=600) {
	    altura = '232';
	    largura = '445';
	}else{
	    altura = '328';
	    largura = '647';
	}
//}

// Pega o endereço do site pra concatenar no nome do flash
var strUrlArray = String(document.location).split('/');
var strUrl = '';
strUrl = 'http://' + strUrlArray[2];
if (strUrlArray.length > 4) {
    strUrl += '/' + strUrlArray[3]
}

document.write('<object type="application/x-shockwave-flash" width="' + largura + '" height="' + altura + '" id="swf" data="' + strUrl + '/ComponentesSite/Vitrines/vitrine_principal.swf" >');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="' + strUrl + '/ComponentesSite/Vitrines/vitrine_principal.swf" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="wmode" value="transparent" />');	
document.write('<param name="bgcolor" value="#ffffff" />');
document.write('<embed width="' + largura + '" height="' + altura + '" wmode="transparent" type="application/x-shockwave-flash" />');
document.write('</object>');
