function flash(flash,h,l){
	document.write('<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="'+ l +'" height="'+h+'">');
	document.write('<param name="movie" value="'+flash+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<embed src="'+flash+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+l+'" height="'+h+'" wmode="transparent"></embed>');
	document.write('</object>');
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
function escSt(id) {
	var st = window.document.getElementById(id).style.display;
	if (st == "block") {
		window.document.getElementById(id).style.display = "none";
	} else {
		window.document.getElementById(id).style.display = "block";
	}
}

function xverif(){
if ((form1.nome.value == "") && (form1.categoria.selectedIndex == 0))
{
//alert(form1.categoria.selectedIndex);
alert("Entre com uma palavra ou selecione uma categoria ");
form1.nome.focus();
return false;
} else {
 form1.submit();
 }

}