function insertFlash(movie,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+'">');
	document.write('<param name="movie" value="'+movie+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="scale" value="noscale" />');
	document.write('<embed src="'+movie+'" width="'+ancho+'" height="'+alto+'" scale="noscale" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
//	document.write('<embed src="'+movie+'"  scale="noscale" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'" wmode="transparent"></embed>');
	document.write('</object>');
}


function RenderPopup(windowsource, windowname, width,

	height, scrollbars, directories, location,

	menubar, status, toolbar, resizable) {

	var winl = (screen.width - width) / 2;

	var wint = (screen.height - height) / 2;

	var windowfeatures = 'width=' + width +

	',top='+wint+',left='+winl+',height=' + height + ',directories=' + directories +

	',location=' + location + ',menubar=' + menubar +

	',scrollbars=' + scrollbars + ',status=' + status +

	',toolbar=' + toolbar + ',resizable=' + resizable;

window.open(windowsource, windowname, windowfeatures);

}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=320,height=309');");
}