/* Bookmark our site in IE */
	
function bookmarkUs() {
	var bookmark_url = "http://www.tuplazofijo.com.ar";
	var bookmark_title = "Tu Plazo Fijo";
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		window.external.AddFavorite(bookmark_url,bookmark_title)
	} else { 
		alert("Tu navegador no soporta esta funcion. Cerra esta ventana y presiona CTRL+D para agregar el sitio a tus favoritos.");
	}
}


/* This 2 functions are for hiding/showing the div */ 
function showDiv(div_id) {
	// show the requested div
	document.getElementById(div_id).style.display = 'block';
}
function hideDiv(div_id) {
	// hide the requested div
	document.getElementById(div_id).style.display = 'none';
}

function hideShow(div_id) {
	// Hive/Show the requested div
	var div_display = document.getElementById(div_id).style.display;
	if (div_display == 'none') {
		showDiv(div_id);
	} else if (div_display == 'block') {
		hideDiv(div_id);
	}
}