//<!--
var win;
var tog = 0;
var str = new Array();
str[0]="HOLA! Te felicito por tu webpage, se ve muy bonita sabes. Me gustaria escuchar tu saludo en espanol. Bueno yo no se, tal vez tengas mas fans que hablen ingles, esa es tu decision, es solo un comentario, de todas maneras te miras muy bella." +
"<br>Mandame un saludo cuando estes en Cuanto Cuesta el Show, te miro todos los dias" +
"<br>Rigo"

str[1]="hello mar, i just wanted to tell you that you're such a beautiful woman and i admire you so much. i was wondering what kind of music you sing? and if u give any kind of show in any location near los angeles, i would like to hear u sing. i think the best sample to ur web page is number 1 it adds a lot of color to it, but in both of them you look very beautiful." +
"<br>please email me back whenever you have a chance please" +
"<br>thank you, very truly yours" +
"<br>carla"

str[2]="Stay tuned for show dates and times"

str[3]='<br>Mar Castro co-hosted Los Angeles Channel 22 "Para Variar" Mon-Fri at 6 PM which started July 1, 2002.'

str[4]='Did you know that Mar Castro is also a film music songwriter?<br><br>Her song "Asi Soy Yo" is in a Spike Lee movie and "Atame, Desatame" is in a Rafael Montero movie and its soundtrack. Mar appears on camera in <i>Love and Basketball</i> and as Yolanda in <i>Corazones Rotos</i>.'

function showText(i) {
	win = window.open("", "smallwin", 
       "width=520,height=280,status=yes,scrollbars=yes,resizeable=yes");
       win.document.open("text/html", "replace");
       win.document.write('<HTML><title>Fan Mail</title><BODY><font color="#FF6633">' + str[i] + '</font></BODY></HTML>');
       win.document.close();
}
//-->

