// Navigation Javascript Document
function showNew(url,width,height) {
	var props="width="+width
	props +=",height="+height
	props +=",resizable=yes"
	props +=",status=yes"
	props +=",menubar=yes"
	props +=",toolbar=yes"
	props +=",location=yes"
	props +=",scrollbars=auto"
	window.open(url,'newwin',props)
}
function over(id,type) {
  if (type=="nav")
  	navOver(MM_findObj(id))
  else if (type=="sign")
  	signnavOver(MM_findObj(id))
  else
  	subnavOver(MM_findObj(id));
}
function out(id,type) {
  if (type=="nav")
  	navOut(MM_findObj(id))
  else if (type=="sign")
  	signnavOut(MM_findObj(id))
  else
  	subnavOut(MM_findObj(id))
}
function navOver(obj) {
  obj.style.color="#000000";
  return false;
}
function navOut(obj) {
  obj.style.color="#000000";
  return false;
}
function subnavOut(obj) {
  obj.style.color="#FFFFFF";
  return false;
}
function subnavOver(obj) {
  obj.style.backgroundColor="#000000";
  return false;
}
function signnavOut(obj) {
  obj.style.backgroundColor="#FFCC66";
  obj.style.borderTop="solid #FFCC66 2px";
  obj.style.borderLeft="solid #FFCC66 2px";
  obj.style.borderBottom="solid #FFCC66 2px";
  obj.style.borderRight="solid #FFCC66 2px";
  return false;
}
function signnavOver(obj) {
  obj.style.backgroundColor="#FFE090";
  obj.style.borderTop="solid #FFECCE 2px";
  obj.style.borderLeft="solid #FFECCE 2px";
  obj.style.borderBottom="solid #FFCC66 2px";
  obj.style.borderRight="solid #FFCC66 2px";
  return false;
}
function goto(url) {
  window.location.replace=url;
}
function stat(url) {
  if (url) window.status = url;
  else window.status="";
}

//Macromedia Dreamweaver MX 2004 functions
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
