/**********************************************************************
	Project: BREAD GARDEN
	Version: 1.0
	Author: Hze
	Netgenetix Media
 *********************************************************************/




/**********************************************************************
	LINKS
 *********************************************************************/

function setExternalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && ( anchor.getAttribute("rel") == "external" || anchor.getAttribute("rel") == "nofollow" ) ) {
			anchor.target = "_blank";
		}
	}
}




/**********************************************************************
	CLEAR FORM
 *********************************************************************/

function clearForm() {
	document.forms[0].username.value= "";
	document.forms[0].useremail.value= "";
	document.forms[0].userphone.value= "";
	document.forms[0].usercomment.value= "";
}

function focusForm() {
	document.forms[0].username.focus();
}




/**********************************************************************
	GLOBAL INITIALIZATION
 *********************************************************************/

function init() {
	setExternalLinks();
}

function initFocus() {
	setExternalLinks();
	focusForm();
}
