<!--
// ---------------------------------------------------------
// File Revision: 1.0.0 - Edit Date: 05/29/2007 - By: Smoke
// ---------------------------------------------------------

// Separador de Texto
function stX(Texto,Espacio) {
 if (Espacio == null) { Espacio = 0 };
 if (Espacio >= 9) { Espacio = 9 };
 if (Texto == null) { Text = "" };
 var textoX = Texto + "," + Espacio;
 window.status=separa(textoX);
}
function separa(textoX) {
 var count=textoX.length; var texto=textoX.substr(0,count-2); var cant=textoX.substr(count-1,1); var texto2=""; var nbsp="";
 if (cant==null) { cant=0; }
 for (i = 0; i < cant; i++) { nbsp+=" " }
 if (texto!=null) { var count = texto.length; for (i = 0; i < count; i++) { texto2+=texto.charAt(i)+nbsp } return texto2; }
}

// Abrir nueva ventana
function opX(theURL,winName,features) { window.open(theURL,winName,features); }
function DoAsk(tourl,question) { if(confirm(question)==true){document.location.href=(tourl);} }

// -----------------------------------------------------
// Copyright (c) 2007 sMk Designs - All Rights Reserved
// -----------------------------------------------------
//-->
