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;

// Use openNewWin from now on
function openWin(url, name, w, h)

{

w += 32;

h += 96;

 var win = window.open(url,

  name,

  'width=' + w + ', height=' + h + ', ' +

  'location=no, menubar=no, ' +

  'status=no, toolbar=no, scrollbars=yes, resizable=yes');

 win.resizeTo(w, h);

 win.focus();
 

}



function openNewWin(url, name, w, h)

{


 var win = window.open(url,

  name,

  'width=' + w + ', height=' + h + ', ' +

  'location=no, menubar=no, ' +

  'status=no, toolbar=no, scrollbars=yes, resizable=yes');

 win.resizeTo(w, h);

 win.focus();

 

}



function selectMe(form) {    //used on the StudioSamples.net page to automatically select urls for copying
	text=form.address
	text.focus();
	text.select();
	}


if (self != top) { top.location.href = self.location.href }





