// General Chickabiddies functions

// Go to href
function go(url){
	document.location.href=url;
}

// Open link in a new window
function nW(thisLink){
	window.open(thisLink.href);
	return false;
}
