function displaymenu(idname)
{

if (document.getElementById(idname).style.display="none")
{
document.getElementById(idname).style.display="inline";
document.getElementById(idname + "_expand").style.display="none";
document.getElementById(idname + "_contract").style.display="inline";
}

}

function hidemenu(idname)
{

if (document.getElementById(idname).style.display="inline")
{
document.getElementById(idname).style.display="none";
document.getElementById(idname + "_expand").style.display="inline";
document.getElementById(idname + "_contract").style.display="none";
}

}

function ays()
{
	if (confirm('Are you sure you wish to continue?'))
	{
		return true;
	}
	else
	{
		return false;
	}
}

function log_out()
{
	ht = document.getElementsByTagName("html");
	ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
	if (confirm('Are you sure you wish to exit?'))
	{
		return true;
	}
	else
	{
		ht[0].style.filter = "";
		return false;
	}
}

function createpage (form, webpath) {
var TestVar = form.file.value;
var TestVar2 = form.title.value;
var TestVar3 = form.color.value;
var TestVar4 = form.auto.value;
var TestVar5 = form.path.value;
if (!TestVar)
{
	alert('ERROR: You MUST give your page a filename!'); 
}
else if (!TestVar2)
{
	alert('ERROR: You MUST give your page a title!'); 
}
else
{
win2=window.open(webpath + '/createpage.php?file='+ TestVar +'&title='+ TestVar2 +'&color='+ TestVar3 +'&auto='+ TestVar4 +'&path='+ TestVar5 +'&doit=1', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=557,height=100')
win2.creator=self
}
}

function createfile (webpath) {
var TestVar = document.form1.file.value;
var TestVar5 = document.form1.path.value;
var TestVar6 = document.form1.path2.value;
if (!TestVar)
{
	alert('ERROR: You MUST give your block a name!'); 
}
else
{
win2=window.open(webpath + '/createfile.php?file='+ TestVar +'&path='+ TestVar5 +'&return='+ TestVar6 +'', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=557,height=100')
win2.creator=self
}
}