/* VentaMía Scripts */

function swapImage(element,image) { document.getElementById(element).src = image }

function swapBg(element,image,color) { 
	document.getElementById(element).style.backgroundImage = 'url("' + image + '")' ;
	document.getElementById(element).style.color = color;
}

function showHide(element,image,image1,image2) {
	if (document.getElementById(element).style.display == 'none' ) {
		document.getElementById(element).style.display = 'block';
		document.getElementById(image).style.backgroundImage = 'url("' + image2 + '")';
	} else {
		document.getElementById(element).style.display = 'none';
		document.getElementById(image).style.backgroundImage = 'url("' + image1 + '")';
	}
}

function swapInfo(info) {
infos = ['bienvenida','ventajas','compras','pagar','ventas','cobrar','inventario','equipo','contacto','contratacion','ayuda'];
infosLen = infos.length;
var i = 0;
	for (i=0;i<infosLen;i++) {
		if (infos[i]!=info) {
			document.getElementById(infos[i]).style.display = 'none';
		}
	document.getElementById(info).style.display = 'block';
	}
}

// var iframe = '<iframe name="contenido" width="670px" height="450px" frameborder="0" scrolling="no" src="sf/blank.htm" style="margin:15px;" AllowTransparency ></iframe>';
