function hide_div(id)
{
	eval('var obj=dd.elements.'+id+';');
	if(obj != null){obj.hide();}
}

function show_div(id)
{
	eval('var obj=dd.elements.'+id+';');
	if(obj != null){obj.show();}
}

function muestra_div_msg(title,msg,width,height)
{
	var obj=dd.elements.divmsg;
	if(obj != null)
	{

		obj.write('<div class="TitPopup"><div class="closePopup"><a href="javascript:hide_div(\'divmsg\');"><img src="/imgfiles/2006/images/delete.gif" border=0></a></div>'+title+'</div><div class="txtAlerta">'+msg+'<br><input type="button" name="aceptar" value="'+txtaceptar+'" onclick="hide_div(\'divmsg\');"></div><div style="clear:both;"></div>');
		if(width == null){width='200';}
		if(height == null){height='200';}
		obj.resizeTo(width,height);
		obj.moveTo(obj.defx+dd.getScrollX(),obj.defy+dd.getScrollY());
		obj.show();
	}
}


