function write_flash(file, widthF, heightF)

{

	/*if(actualVersion>='6') 

	{  */

		var oeTags = '<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="' + widthF + '" height="' + heightF + '" id="flashobj" align="middle">'

			+ '<param name="allowScriptAccess" value="sameDomain" />'

			+ '<param name="movie" value="' + file + '" />'

			+ '<param name="quality" value="high" />'

			+ '<param name="bgcolor" value="#FFFFFF" />'

			+ '<param name="wmode" value="transparent">'

			+ '<embed src="' + file + '" quality="high" bgcolor="#FFFFFF" width="' + widthF + '" height="' + heightF + '" name="flashobj" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />'

			+ '</object>';

		document.write(oeTags);   // embed the flash movie

	/*} 

	else 

	{  // flash is too old or we can't detect the plugin

		// NOTE: height, width are required!

		var alternateContent = '<img src="images/flash-home.jpg" alt="Novedades Borges"/>';

		document.write(alternateContent);  // insert non-flash content

	}*/

}



function write_flashECard(file, widthF, heightF, idF)

{

	if(actualVersion>='6') 

	{  

		var oeTags = '<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="' + widthF + '" height="' + heightF + '" id="idF" align="middle">'

			+ '<param name="allowScriptAccess" value="sameDomain" />'

			+ '<param name="movie" value="' + file + '" />'

			+ '<param name="quality" value="high" />'

			+ '<param name="bgcolor" value="#FFFFFF" />'

			+ '<param name="wmode" value="transparent">'

			+ '<embed src="' + file + '" quality="high" bgcolor="#FFFFFF" width="' + widthF + '" height="' + heightF + '" name="idF" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />'

			+ '</object>';

		document.write(oeTags);   // embed the flash movie

	} 

	else 

	{  // flash is too old or we can't detect the plugin

		// NOTE: height, width are required!

		var alternateContent = 'No se ha detectado el plugin de flash';

		document.write(alternateContent);  // insert non-flash content

	}

}



function write_Pix(thumb,altimg,link) 

{

 if(thumb!='')

 {

  document.getElementById(thumb).innerHTML = '<a href="#" onclick="return popen(\''+ decodeURIComponent(link) +'\', 550, 455, 300, 200)"><img src="'+altimg+'" alt="" /></a>';

 }

 //return false;

}
