function open_window(newwin, width, height, scrollpage) {
   if (scrollpage == null){
	   scrollpage = "0";
   }
   
   flyout=window.open(newwin, "popup", "width=" + width + ",height=" + height + ",menubar=no,toolbar=no,resizeable=yes,status=no,scrollbars=" + scrollpage + ",center=1");
   flyout.focus();
  }
  
  
   /* jQuery Functions */
$(document).ready(
	function()
	{

	$("table.data").each(function(){
		 $("tr:odd", this).not(".even").addClass("odd");
		 $("tr:even", this).not(".odd").addClass("even");
	 });
	
	$(".navtreebox").each(function(){
		 $("table:odd", this).not(".even").addClass("odd");
		 $("table:even", this).not(".odd").addClass("even");
	 });	

	$('#jswarning').hide();

	}
);
