/*
'----------------------------------------------------
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'' Function: reloadNS
'' Author: Larry Edmondson larry_edmondson@yahoo.com
'' Description: This fixes a reload bug in netscape
'' Arguments: none
'' Returns: none
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
*/
function reloadNS()
{
	if (navigator.userAgent.indexOf("MSIE") == -1)
	{
		document.location.reload()
	} else {
		return;
	}
}


function printObject(myObj)
{
	for (thisKey in myObj) 
	{
		alert("Item - " + thisKey + "\t Value " + myObj[thisKey]);
	}
}