﻿function NuevaPagina()
{
	SP.UI.ModalDialog.OpenPopUpPage('..\u002f_layouts\u002fCreatePublishingPageDialog.aspx?nuevapagina=ok', null, 390);
}
function NuevoEvento()
{
	var options = {width:500, height:480};
	SP.UI.ModalDialog.OpenPopUpPage('..\u002fLists\u002fAgenda\u002fnewform.aspx', options);
}
$(function(){
	$('span.menu-item-text:contains("yuda")').text(" ").parent().parent().css({
		"background-image" : "url(/imagenes/help.png)",
		"height" : "24px",
		"width" : "24px",
		"background-repeat" : "no-repeat"
	});
	if($.jget["nuevapagina"])
	{
		var ahora = new Date();
		var stamp = ahora.getFullYear() + "" + (ahora.getMonth() + 1) + "" + ahora.getDate() + "_" + ahora.getTime();
		$("#ctl00_PlaceHolderMain_nameInput").val("articulo_" + stamp);	
		$("#ctl00_PlaceHolderMain_createButton").click();
	}
	$(".ms-bodyareacell").prepend($(".s4-pagedescription").html());
	if($("#botones_contenido").length>0 && window.location.hash=="#crearevento")
	{
		window.location.href="#";
		NuevoEvento();
	}
	if($("#botones_contenido").length>0 && window.location.hash=="#crearnoticia")
	{
		window.location.href="#";
		NuevaPagina();
	}
});
