function bookmarksite(title, url) {
	if (document.all)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "")
}

function openPopup(file,height,width,toolbars) {
	window.open(file, '', 'height=' +height+', width=' +width+', toolbar=no, directories=no, status=no, menubar=no, scrollbars='+toolbars+', resizable=no');
}

function blurForm(id,text) {
	var box = document.getElementById(id).value;
	if(box == '')
		return document.getElementById(id).value = text;
}

function focusForm(id,text) {
	var box = document.getElementById(id).value;
	if(box == text)
		return document.getElementById(id).value = '';
}
