﻿function jref(urltogo,texttoshow,newwindow)
{
    if (!urltogo) 
        {
            document.write('no url to go was provided');
        }
        
    if (!texttoshow) 
        {
            document.write("no text to go was provided");
        }
    if (!newwindow) {newwindow=true;}

    if (newwindow==false)
    {
       document.write("<a href='" + urltogo +"'>" + texttoshow + "</a>");
    }
    else
    {
        document.write("<a href='" + urltogo +"' target='_blank'>" + texttoshow + "</a>");
    }
}   

//var strnotreal = "ecnailppaecivrestpmorp@rentrap";
//document.write('<a href="mailto:'+reverse(strnotreal)+'.com">'+reverse(strnotreal)+'.com</a>');
							
//function doReverse(strToReverse) 
//{
//  var strIn = strToReverse;
//  var strOut = "";

//  for (i = 0; i <= strIn.length; i++) 
//  {
//    strOut = strIn.charAt (i) + strOut;
//  }

//  return strOut;
//}

				



