function nOn(td,c) {
    if(document.getElementById||(document.all && !(document.getElementById))) {
       td.style.backgroundColor=c;
    }
}

function nOut(td,c) {
    if(document.getElementById||(document.all && !(document.getElementById))) {
       td.style.backgroundColor=c;
    }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

// Build QuickTime Viewer
function InsertQTMovie(srcPath,width,height) {
  document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
  document.write('<param name="src" value="' + srcPath + '" />\n');
  document.write('<param name="cache" value="true" />\n');
  document.write('<param name="autoplay" value="true" />\n');
  document.write('<param name="loop" value="false" />\n');
  document.write('<param name="controller" value="false" />\n');
  document.write('<embed src="' + srcPath + '" width="' + width + '" height="' + height + '" cache="true" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>\n');
  document.write('</object>\n');
}