function popSound(theURL)  {
	var winSound = window.open(theURL,"soundWindow","menubar=no,personalbar=no,scrollbars=no,width=519,height=721,statusbar=no,toolbar=no,top=10,left=100");
}
function popVideo(theURL)  {
	var winVideo = window.open(theURL,"VideoWindow","menubar=no,personalbar=no,scrollbars=no,width=400,height=637,statusbar=no,toolbar=no,top=10,left=100");
}
function popZoom(theURL,theName,theWidth,theHeight) {
	var theParams = "menubar=no,personalbar=no,scrollbars=no,width=" + theWidth + ",height=" + theHeight + ",statusbar=no,toolbar=no,top=10,left=100";
	var winZoom = window.open(theURL,"_blank",theParams);
}
function popTable(theURL,theName,theWidth,theHeight) {
	var theParams = "menubar=yes,personalbar=yes,scrollbars=yes,width=" + theWidth + ",height=" + theHeight + ",statusbar=yes,toolbar=yes,top=10,left=100";
	var winZoom = window.open(theURL,theName,theParams);
}
function popReference(theURL,theName) {
	var theParams = "menubar=no,personalbar=no,scrollbars=no,width=480,height=400,statusbar=no,toolbar=no,top=10,left=100";
	var winZoom = window.open(theURL,theName,theParams);
}
function popPage(theURL,theName,theWidth,theHeight) {
	var theParams = "menubar=no,personalbar=no,scrollbars=yes,width=" + theWidth + ",height=" + theHeight + ",statusbar=no,toolbar=no,top=10,left=100";
	var winZoom = window.open(theURL,"_blank",theParams);
}
function InsertSampleMovie(url) { 
  document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" width="400" height="228">');
  document.write('<PARAM name="SRC" VALUE="' + url + '">');
  document.write('<PARAM name="AUTOPLAY" VALUE="true">');
  document.write('<PARAM name="CONTROLLER" VALUE="true">');
  document.write('<PARAM name="KIOSKMODE" VALUE="true">');
  document.write('<EMBED SRC="' + url + '" width="480" height="288" AUTOPLAY="true" CONTROLLER="true" kioskmode="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">');
  document.write('</EMBED>');
  document.write('</OBJECT>');
}
function InsertRealAudio(url) {
  document.write('<OBJECT CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" WIDTH="500" height="50" ID=RAOCX>');
  document.write('<PARAM NAME="CONSOLE" VALUE="one">');
  document.write('<PARAM NAME="AUTOSTART" Value="true">');
  document.write('<PARAM NAME="BACKGROUNDCOLOR" VALUE="white">');
  document.write('<PARAM NAME="SRC" VALUE="' + url + '">');
  document.write('<EMBED width="500" height="50" console="one" src="' + url + '" type="audio/x-pn-realaudio-plugin" autostart="true">');
  document.write('</EMBED>');
  document.write('</OBJECT>');
}