function setFlashWidth(divid, newW){
	/*var obj = document.getElementById(divid);
	obj.style.width = newW+"px";*/
    $("#"+divid).width(newW);
}

function setFlashHeight(divid, newH){
	/*var obj = document.getElementById(divid);
	
	if ( obj ) {
		obj.style.height = newH+'px';
		obj.style.zIndex = '1000';
		obj.style.display = 'block';
		obj.style.overflow = 'hidden';
	}*/

    $("#"+divid).height(newH);
    $("#"+divid).css('display','block');
    $("#"+divid).css( 'z-index', '1000' );
    $("#"+divid).css( 'overflow', 'hidden' );

    // desabilita alguns combos
    
    var combos = ['selectrevendas','guiacategoria'];
    $.each(combos,function(){
        if ( $.browser.msie && $.browser.version == '6.0' ) {
            if ( newH == 60 ) {
                $("#"+this).show();
            } else {
                $("#"+this).hide();
            }
        }
    });
}