// JavaScript Document

function HomeSWF1() {
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0" width="749" height="357">');
  document.write('<param name="movie" value="images/home_top.swf" />');
  document.write('<param name="quality" value="high" />');
  document.write('<embed src="images/home_top.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="749" height="357"></embed>');
  document.write('</object>');
}

function HomeSWF2() {
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0" width="352" height="318"  id="homeprod" VIEWASTEXT>');
  document.write('<param name="movie" value="images/flash_home_cds.swf" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="wmode" value="transparent" />');
  document.write('<embed src="images/flash_home_cds.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="352" height="318"  id="homeprod"></embed>');
  document.write('</object>');
}

function DVDProducts() {
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0" width="581" height="226">');
  document.write('<param name="movie" value="images/dvdproducts.swf" />');
  document.write('<param name="quality" value="high" />');
  document.write('<embed src="images/dvdproducts.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="581" height="226"></embed>');
  document.write('</object>');
}

/// This function assists with launching a popup window to preview a specific ScreendreamsDVD video.  It receives a parameter, theURL, which contains the
/// name of the video to be previewed.
var sceneWindow = '';
function OpenPreviewWindow(theURL) {  
	if (!sceneWindow.closed && sceneWindow.location) {
		sceneWindow.close();
	}

	sceneWindow = window.open("",'scene','width=350,height=350');
	sceneWindow.document.write(LoadMiniMovie(theURL));
	sceneWindow.focus();
}

// This function both embeds the specified flash movie and removes the margins for a popup window.
function LoadMiniMovie(movieName) {
  var str = '<html><head><\/head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">';
  str += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0" width="100%" height="100%">';
  str += '<param name="movie" value="images/' + movieName + '" />';
  str += '<param name="quality" value="high" />';
  str += '<embed src="images/' + movieName + '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="100%"></embed>';
  str += '</object><\/body><\/html>';
  return str;
}
