function disEdit(id, v){
    var i=""; 
    if(v=="none"){i="25px"}else{i="-1px"}

    document.getElementById("pageeditorlink").style.marginBottom=i;
	document.getElementById(id).style.display=v;
}

function addPage(){
    document.getElementById("addNewPage").style.display="block";
}

var newwindow;
function opennewwindow(url)
{
 newwindow=window.open(url,'name','height=500,width=850,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=no');
 if (window.focus) {newwindow.focus()}
}
