<!--
function subWrite(imagename,width,height,title) {
   var myWind
   width = width + 10
   height = height + 10
   //make new window
   myWind=window.open("","","width="+width +",height=" +height +",top=5,left=5,scrollbars=no,resizable=no")
   //assemble content and print out
	var msg="<html><head><title>" + title + "</title></head><body>"
	msg += "<img src=" + imagename + "></body></html>"
	myWind.document.open()
	myWind.document.write(msg)
	myWind.document.close()
   // pull window forward
   myWind.focus()
}
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]+"'");
}
//-->
