function opencolorchooser()
	{
	window.open("/global/pages/util/colorchooser/", "colorchooser", "menubar=no, titlebar=no, toolbar=no, resizable=yes, scrollbars=yes, width=400, height=400");
	window.event.returnValue = false;	
	}

//function openimagechooser()
//	{
//	window.open("/global/pages/util/imagechooser/", "imagechooser", "menubar=no, titlebar=no, toolbar=no, resizable=no, scrollbars=yes, width=450, height=400");
////	window.event.returnvalue = false;	
//	}

/*
turn on a colored border for structural elements
for layout debug
*/
function outlinepage()
	{
	document.styleSheets[0].addRule("TABLE","border: solid RGB(255, 0, 0) 1px");
	document.styleSheets[0].addRule("TD","border: solid RGB(255, 100, 0) 1px");
	document.styleSheets[0].addRule("DIV","border: solid blue 1px");
	document.styleSheets[0].addRule("SPAN","border: solid green 1px");
	
	}