function openwin(theURL) {
	var ancho = 1024;
	var alto = 768;

	var popX = (screen.width-ancho)/2;
	var popY = (screen.height-alto)/2;
	
	var opciones_pop = "toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,directories=no,personalbar=no,menubar=no,width="+ancho+",height="+alto+",left="+popX+",top="+popY+"'";
	if ((self.aNoteWin) && (!self.aNoteWin.closed)) self.aNoteWin.close();
 	var popupwin=window.open(theURL,"popupwin",opciones_pop);
	self.aNoteWin = popupwin;
	popupwin.moveTo(popX,popY);
	popupwin.resizeTo(ancho,alto);
	popupwin.focus();

	return;
}

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