$(document).ready(function(){

infoprin();

/*cerramos el evento con un click*/
$("#mopTip01 .close").click(function(){
	$("#mopTip01 table").focus();
	$("#mopTip01 .close").hide();
	$("#mopTip01").hide();
});	
function infoprin() {
	resolucion 	= screen.width;
	resol50por	= resolucion/2;
	resolclic	= resol50por - 220;
	
$("#container").append(
	'<div id="mopTip01">'+
	  '<table border="0" cellspacing="0" cellpadding="0">'+
		'<tr>'+
		  '<td class="leftTop">&nbsp;</td>'+
		  '<td><table class="arrowSet" border="0" cellspacing="0" cellpadding="0">'+
			'<tr>'+
			  '<td class="arrow">&nbsp;</td>'+
			  '<td class="top">&nbsp;</td>'+
			'</tr>'+
		  '</table></td>'+
		  '<td class="rightTop"> </td>'+
		'</tr>'+
		'<tr>'+
		  '<td class="left">&nbsp;</td>'+
		  '<td class="tip"><div class="content"></div></td>'+
		  '<td class="right">&nbsp;</td>'+
		'</tr>'+
		'<tr>'+
		  '<td class="leftBottom">&nbsp;</td>'+
		  '<td><table class="arrowSetBottom" border="0" cellspacing="0" cellpadding="0">'+
			'<tr>'+
			  '<td class="arrowBottom">&nbsp;</td>'+
			  '<td class="bottom">&nbsp;</td>'+
			'</tr>'+
		  '</table></td>'+
		  '<td class="rightBottom"></td>'+
		'</tr>'+
	  '</table>'+
	  '<div class="close">&nbsp;</div>'+
	'</div>'
);
	$('#mopTip01')
	.find('div.content')
		.append('<table><tr><td><img src="/arch/ainfo.gif" width="25"/></td><td>Estas entrando en una p&aacute;gina de acceso para <strong style="color:#074B85">Distribuidores de Inform&aacute;tica</strong>.<br> Si usted es cliente final pulse <a href="http://www.dynos.es"><strong>aqu&iacute;</strong></a> para poder ver nuestros precios.</td></tr></table>');
		
	$("#mopTip01").css({left:"280px"});
	$("#mopTip01 .arrowSet tr").html('<td class="arrow">&nbsp;</td><td class="top">&nbsp;</td>');
	$("#mopTip01 .top").css({width:"470px",height:"20px"});
	$("#mopTip01 .arrowSet").css({width:"470px"});
	$("#mopTip01 .arrowSetBottom tr").html('<td class="bottom">&nbsp;</td>');
	$("#mopTip01 .bottom").css({width:"470px",height:"20px"});
	//$("#mopTip01 .close").show();
	$("#mopTip01").pngFix();
}

});
