<!-- hide from non-JavaScript enabled browsers

function printWindow(){
	browserVersion = parseInt(navigator.appVersion)
	if (browserVersion >= 4) window.print()
	}

function openNewWindow(URL,winName,features) { 
  window.open(URL,winName,features);
}

function popup(url, name, width, height,left, top){
	settings=
     	"toolbar=yes,location=yes,directories=yes,"+
      	"status=no,menubar=no,scrollbars=yes,"+
 //  	"resizable=yes,width="+width+",height="+height; //
	"resizable=yes,width="+width+",height="+height+",left="+left+",top="+top;
     	MyNewWindow=window.open(url,name,settings);
}

//  end of JavaScript code -->