function menuSeperator(color, width)
{
	var HTMLSource;
	HTMLSource = "<table width=\"" + width + "\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">" +
		 "<tr bgcolor=\"" + color + "\">"+
		 "<td></td></tr></table>";
	document.write(HTMLSource) ;
}

function openWindow(name, width, height)
{
	popWin = window.open("", name, "toolbar=0,menubar=0,resizable=yes,scrollbars=yes,width="+width+",height="+height);
 	popWin.focus();
}

function popUp(URL, name, width, height)
{
	popWin = window.open(URL, name, "toolbar=0,menubar=0,resizable=yes,scrollbars=yes,width="+width+",height="+height);
 	popWin.focus();
}
