// FLASH 6
function flash6(nome, id, com, alt, query){
		document.write(
			'<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"  width="'+com+'" height="'+alt+'" id="'+id+'" > <param name="movie" value="'+nome+'" />'+
			'<param name="FlashVars" value="'+query+'" />'+
			'<param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="'+nome+'" wmode="transparent" FlashVars="'+query+'"  quality="high" width="'+com+'" height="'+alt+'" name="'+id+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'+
			'</object>'
		);
	}

	
function div (a) {
	obj = document.getElementById("faq");
    if (a == "abre") {
		obj.style.display = "block";
	}
	else if (a == "fecha") {
		obj.style.display = "none";
	}
}

function EW_ElementShow (id)
{
	var obj = document.getElementById (id);

	if (obj != null)
	{
		obj.style.display = "block";
	}
}

function EW_ElementHide (id)
{
	var obj = document.getElementById (id);

	if (obj != null)
	{
		obj.style.display = "none";
	}
}

// POP UP
function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}


function EW_ElementShow (id)
{
	var obj = document.getElementById (id);
	
	if (obj != null)
	{
		obj.style.display = "block";
	}
}

function EW_ElementHide (id)
{
	var obj = document.getElementById (id);

	if (obj != null)
	{
		obj.style.display = "none";
	}
}



	
 	 


