// Copyright 2009 New Wave Media. All rights reserved.

/*---------------------------------
 * DEFAULT FUNCTIONS
 *---------------------------------*/

function copyrightYear(){
	if(document.getElementById('setYear')) document.getElementById('setYear').innerHTML = new Date().getFullYear();
}

function externalLinks(){
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		if (anchors[i].getAttribute("href") && anchors[i].getAttribute("rel") == "external") anchors[i].target = "_blank";
	}
}

function siteOnLoad () {
	copyrightYear();
	externalLinks();
}

function addLoadEvent(func){
	var oldOnLoad = window.onload;
	if(typeof window.onload != 'function'){
		window.onload = func;
	}
	else{
		window.onload = function(){
			oldOnLoad();
			func();
		}
	}
}

addLoadEvent(siteOnLoad);

// Clear Search Text
function clearSearch() {
	document.getElementById("search").value="";
}

// Clear Name Text
function clearName() {
	document.getElementById("contName").value="";
}

// Clear Email Text
function clearEmail() {
	document.getElementById("contEmail").value="";
}
