// JavaScript Document





//CHANGE JAVASCRIPT WARNING
document.getElementById('JavaScriptWarning').style.display = 'none';

	
/*<script src="/javascripts/prototype.js" type="text/javascript"></script>
//<script src="/javascripts/slider.js" type="text/javascript"></script>
//<script src="/javascripts/scroller.js" type="text/javascript"></script>  */


//POPUP WINDOW
function popup(w,h,location,userID,Param1,commentType)
{
	
	windowProperties='resizable=yes,scrollbars=yes,top=40,left=100,';
	if(w!="" && h!="") { windowProperties+='width='+w+',height='+h; }
	else if(w!=""){ windowProperties+='width='+w+',height=608';} 
	else if (h!=""){ windowProperties+='width=608,height='+h; } 
	else { windowProperties+='width=450,height=608'; }
	
	//if(eightbyten!="yes") { eightbyten="no";}
	
	var nW = window.open("",name,windowProperties);
	//nW.location.href = "../acting/pictureswindows/"+name+".php?name=" + name + "&eightbyten=" + eightbyten;
	nW.location.href = location + "?userID=" + userID + "&Param1=" + Param1 + "&commentType=" + commentType;
	nW = null;
}


/*  Befire main menu */

<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

//--><!]]>

/*   End Menu */