// AM Design global scripts// www.amdesign.net//// ©2001 AM Design//// Make sure that any functions added to this file have a unique// name since there may be scripts in the individual pages.<!--function WM_imageSwap(daImage, daSrc){  var objStr,obj;	/*	WM_imageSwap()	Changes the source of an image.	Source: Webmonkey Code Library	(http://www.hotwired.com/webmonkey/javascript/code_library/)	Author: Shvatz	Author Email: shvatz@wired.com	Thanks to Ken Sundermeyer (ksundermeyer@macromedia.com) for his help	with variables in ie3 for the mac. 	*/  // Check to make sure that images are supported in the DOM.  if(document.images){	// Check to see whether you are using a name, number, or object	if (typeof(daImage) == 'string') {	  // This whole objStr nonesense is here solely to gain compatability	  // with ie3 for the mac.	  objStr = 'document.' + daImage;	  obj = eval(objStr);	  obj.src = daSrc;	} else if ((typeof(daImage) == 'object') && daImage && daImage.src) {	  daImage.src = daSrc;	}  }}function outputdate() {	var today = new Date();		document.write (today);	}function openwindow(url) {	  if (navigator.platform == "MacPPC") {		openurl = "";	  }	  else {		openurl = "blank.php";	  }	myopen = window.open(openurl,'detail','width=382,height=348,toolbar=no,menubar=no,scrolling=no,location=no,directories=no');	myopen.location = url;	}-->