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 blurTeste(id) {
	var box = document.getElementById(id).value;
	if(box == '' || !box.match(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/))
		return document.getElementById(id).value = 'email...';
}

window.onload=document.getElementsByTagName("html")[0].style.backgroundColor="#000";