﻿// JScript File

function cargarFondo(){
	imagen = "img/f1.jpg";
	if(screen.width>1024) imagen = "img/f2.jpg";
	if(screen.width>1024&&screen.height>800) imagen = "img/f3.jpg";
	if(screen.width>1280) imagen = "img/f4.jpg";
	if(screen.width>1440) imagen = "img/f5.jpg";

	
document.body.style.backgroundImage="url("+imagen+")"; 
	
}

function flash(nombre,ancho,alto){
	
	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="'+ancho+'" height="'+alto+'" align="middle">');
       document.write(' <param name="movie" value="'+nombre+'">');
       document.write(' <param name="quality" value="high">');
	   document.write(' <param name="wmode" value="transparent">');
       document.write(' <embed src="'+nombre+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'" align="middle"></embed>');
   document.write(' </object>');
	
}
