// Open Window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// Bookmark
function bookmark() {

var bookmarkurl=this.location;
var bookmarktitle=document.title;

if (window.sidebar&&window.sidebar.addPanel)
	window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
else if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle);

}

// Anti Spam Email Protection Measure
function protectEmail(name, url){
   email = name + '@' + url;
   document.write('<a href="mailto:' + email + '">' + email + '</a>')
};

// Form Field
function clickclear(thisfield, defaulttext)
{
	if (thisfield.value == defaulttext)
	{
		thisfield.value = "";
	}
}

function clickrecall(thisfield, defaulttext)
{
	if (thisfield.value == "")
	{
		thisfield.value = defaulttext;
	}
}

// Form Color Change
function change(that, fgcolor){
	that.style.color = fgcolor;
}

//-->