<!--

function openWindow(URL,name,features) {
	window.open(URL,name,features);
}

function closeWindow() {
  window.close();
}

function imgSwap(primary, imgName)
{
 eval("document." + primary + ".src = '" + imgName + "'");	
}	

function preload() {
  if (!document.images) return;
  var ar = new Array();
  var arguments = preload.arguments;
  for (var i = 0; i < arguments.length; i++) {
    ar[i] = new Image();
    ar[i].src = arguments[i];
  }
}

function go_select(form) {
  var myindex=form.dest.selectedIndex;
  if (myindex>=1)
     {top.location=form.dest.options[myindex].value;}
  else
     {alert("Please make a selection.");}
}

var date = new Date();
var year = date.getFullYear();

function credit() {
	document.write('<a href="http://www.gocreative.com" class="credit">Powered by Gocreative ContentContributor</a>&nbsp;');
}

//-->