// JavaScript Document

// CopyRight code

function copyrightDate(){
wriYr = new Date
var doYr = wriYr.getFullYear()
document.write(doYr)
}


/* Add this text to the HTML page
All content copyright 
<SCRIPT type="text/javascript">
		  <!--
		  copyrightDate()
		  //-->
		  </SCRIPT> . All rights reserved.

*/


function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += " You can view it at, " + location.href; 
location.href = mail_str;
}

// external_script.js
function CreateControl(DivID, CLSID, ObjectID, WIDTH, HEIGHT, URL, AUTOSTART)
{
  var d = document.getElementById(DivID);
  d.innerHTML = '<object classid=' + CLSID + ' id=' + ObjectID + ' width=' + WIDTH + ' height=' + HEIGHT +'> <param name="URL" value=' + URL + '>  <param name="autoStart" value=' + AUTOSTART + '/>';
}
