var PTVParamStr = '\t You must have java enabled to view this tour.  Please visit www.java.com for a free download. \t';

function addPTViewerParameter(Name,Value) {
	PTVParamStr = PTVParamStr + '<param name="' + Name + '" value="' + Value + '">\n\t';
}

function InsertPTVApplet(Name, Width, Height) {
  document.write('<applet code="ptviewer.class" name="' + Name + '" width="' + Width + '" height="' + Height +'">\n');
  document.write(PTVParamStr + '\n');
  document.write('</applet>\n');
}