// JavaScript Document
function focusInput(defaultText, inputElement) {
//	inputElement.style.color = '#000000';
	if (inputElement.value==defaultText) {
		inputElement.value = '';
	}
}
function blurInput(defaultText, inputElement) {
//	inputElement.style.color = '#C50000';
	if (inputElement.value.length<1) {
		inputElement.value = defaultText;
	}
}
/*
if (!document.getElementById('user').value) {
	document.getElementById('user').value = 'User';
}
if (!document.getElementById('pass').value) {
	document.getElementById('pass').value = 'Clave';
}
if (!document.getElementById('buscar').value) {
	document.getElementById('buscar').value = 'Realiza tu busqueda....';
}*/

function addBookmark() {
	var BookmarkURL="http://www.juegossaturno.com/"
    var BookmarkTitle="Juegossaturno.com"
    // If the browser is Internet Explorer
    if (document.all){
		// Add to Favorites (Internet Explorer)
        window.external.AddFavorite(BookmarkURL,BookmarkTitle)
    }
    else
    {
        // Add to Bookmarks (Mozilla Firefox)
        window.sidebar.addPanel(BookmarkTitle, BookmarkURL, '');
    }
}
