// CARREGA FLASH
function carregaFlash(caminho,largura,altura,objInput){
	var strFlash;
	strFlash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+largura+'" height="'+altura+'">';
	strFlash += '<param name="movie" value="'+caminho+'">';
	strFlash += '<param name="quality" value="high">';
	strFlash += '<param name="wmode" value="transparent">';
	strFlash += '<param name="menu" value="false">';
	strFlash += '<embed src="'+caminho+'" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="'+largura+'" height="'+altura+'"></embed>';
	strFlash += '</object>';
	if(typeof(objInput) != "object"){
		objInput = document.getElementById(objInput);
	}
	if (objInput != null){		
		objInput.innerHTML = strFlash;
	} else {
		document.write(strFlash);
	}
}
// ABRE POPUP
function abrePop(caminho,nome,w,h,scrl){
	window.open(caminho, nome, "top=50, left=50, height="+h+", width="+w+", scrollbars="+scrl);
	void(0);
}
function checaURL(url){
	if(document.location != url){
		document.location = url
	}
}
function init(){
	//checaURL("http://www.greendigital.com.br/win/");
	carregaFlash("site.swf",778,610,"site");
}
