<!--// Hide from old browsers

var ToolBar_Supported = ToolBar_Supported;
if (ToolBar_Supported != null && ToolBar_Supported == true)
{
	TBDownLevelDiv.style.display ='none';
	drawToolbar();
}

//-->

//<!--

var sArtPath 	= "art/";
var sRelPath	= "css/";

function checkKey()
{
	var key = window.event.keyCode;
	if (window.event.shiftKey)
	{
		if (key == 65 || key == 97)
		{
			ShowAll();
		}
		else if (key == 67 || key == 99)
		{
			CloseAll();
		}
	}
}

function ShowAll()
{
	for(var i = 0; i < document.all.length; i++)
	{
	   if (document.all(i).className == "collapsed")
	   {
		document.all(i).className = "expanded" ;
	   }
	}
}

function CloseAll()
{
	for(var i = 0; i < document.all.length; i++)
	{
	   if (document.all(i).className == "expanded")
	   {
		document.all(i).className = "collapsed" ;
	   }
	}
}

function outliner(id)
{
//    var child = document.all[event.srcElement.getAttribute("child",false)];
//    if (null != child){
//		if(child.className == "collapsed")
//		{
//			child.className = "expanded";
//			return;
//		}
//		if(child.className == "expanded")
//		{
//			child.className = "collapsed";
//			return;
//		}
//    }
	if (document.getElementById) { // DOM3 = IE5, NS6
//			alert(id);
		if (document.getElementById(id).style.display == 'none'){
			document.getElementById(id).style.display = 'block';
		} else {
			document.getElementById(id).style.display = 'none';			
		}	
	} else { 
		if (document.layers) {	
			if (document.id.display == "none"){
				document.id.display = 'block';
			} else {
				document.id.display = 'none';
			}
		} else {
			if (document.all.id.style.visibility == "none"){
				document.all.id.style.display = 'block';
			} else {
				document.all.id.style.display = 'none';
			}
		}
	}
}
function QMOver(oObj)
{
	oObj.style.color='#483D8B';
}

function QMOut(oObj)
{
	oObj.style.color='black';
}

function CMOver(oObj)
{
	oObj.style.color='#B22222';
}

function CMOut(oObj)
{
	oObj.style.color='black';
}

//-->
function openwindow(url)

{

window.open(url,"standalone","scrollbars=yes,resizable=no,toolbar=yes,width=530,height=500")

}

