<!--

/* script prevents spam-bots from harvesting email address */
var name = "production";
var address = "timminchin.com";
var link = "Contact Tim";
function protectmail() {
document.write('<a class="email" href=mailto:' + name + '@' + address + '>' + link + '</a>');
}

/* clears default values from input boxes */
function clearText(thefield){
  if (thefield.defaultValue==thefield.value)
  thefield.value = ""
}

/* popup a new window */
function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=300,left = 362,top = 234');");
}

//-->
