function print_swf(swf, width, height )
{
	//swf = 'fla/banner_top.swf';
	//width = 726;
	//height = 190;
	
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="'+ width +'" height="'+ height +'"><param name="movie" value="' + swf + '" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed wmode="transparent" src="' + swf + '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+ width +'" height="'+ height +'"></embed></object>';
	
	document.write(str);
}


function print_conteudo(str)
{
	document.write(str);
}

/*
function estiloForm()
{

	arrLabel = document.getElementsByTagName("label");
	
	
	for(i=0; i<arrLabel.length; i++)
	{
		var ele = arrLabel[i];
		
		strClass = ele.className;
		
		alert(strClass);
		
		arrClass = strClass.split(" ");
		
		for ( j=0; j<arrClass.length; j++ ) {
		
			if (arrClass[j] == 'labelItalico')
			{
				label = ele.getAttribute('innerHTML');
				
				alert(ele.getAttribute('for'));
				
				document.getElementById(ele.getAttribute('for')).setAttribute('value',label);
			}		
		}
	}
	
}

//addEvent (window, "load", estiloForm);
*/

function input_blur(ele)
{
	if(ele.value =='')
	{
		ele.value= ele.defaultValue;
		ele.className = 'c_ml TextItalic';
		ele.s='';
	}
}
function input_focus(ele)
{
	if(ele.s!='t')
	{
		ele.value='';
		ele.className = 'DefaultFont';
		ele.s='t';
	}
}
