
function insertObject(strObjectCode)
{
	document.write(strObjectCode);
}

function launchBrowser(strDestination, strDialogName, nWidth, nHeight)
{
  var wndNewWindow = window.open (strDestination, strDialogName,"resizable,scrollbars,width=" + nWidth + ",height=" + nHeight + "");
 // return wndNewWindow;
}

function launchQuickTimeMovie(strMovie, nWidth, nHeight)
{
  var strDestination = "movie_QuickTime.aspx?mov=" + strMovie + "&w=" + nWidth + "&h=" + nHeight;
  var nTotalWidth = nWidth + 40;
  var nTotalHeight = nHeight + 40;
  var wndNewWindow = window.open (strDestination, "QuickTime","resizable,scrollbars,width=" + nTotalWidth + ",height=" + nTotalHeight + "");
 // return wndNewWindow;
}

function launchWMVMovie(strMovie, nWidth, nHeight)
{
  var strDestination = "movie_WMV.aspx?mov=" + strMovie + "&w=" + nWidth + "&h=" + nHeight;
  var nTotalWidth = nWidth + 40;
  var nTotalHeight = nHeight + 40;
  var wndNewWindow = window.open (strDestination, "WMV","resizable,scrollbars,width=" + nTotalWidth + ",height=" + nTotalHeight + "");
 // return wndNewWindow;
}

function launchPhoto(strPhoto, nWidth, nHeight)
{
  var strDestination = "photo_viewer.aspx?photo=" + strPhoto + "&w=" + nWidth + "&h=" + nHeight;
  var nTotalWidth = nWidth + 40;
  var nTotalHeight = nHeight + 40;
  var wndNewWindow = window.open (strDestination, "PhotoViewer","resizable,scrollbars,width=" + nTotalWidth + ",height=" + nTotalHeight + "");
 // return wndNewWindow;
}
