function emptyinput(id, matchtext)
{
	if (document.getElementById(id).value.toUpperCase() == matchtext.toUpperCase()) 
		document.getElementById(id).value = '';
}

function resetinput(id, matchtext)
{
	if (document.getElementById(id).value == '') 
	{
		document.getElementById(id).value = matchtext;
	}
}

function loadswf(swf, divdestino, ancho, alto)
{
	
	var so = new SWFObject(swf, "sotester", ancho, alto, "7", "#FFFFFF");
	
	if (ancho == 550 && alto == 310)
	{
		so.addParam("wmode", "transparent");
	}
	
	so.useExpressInstall('js/expressinstall.swf');
	so.write(divdestino);
}