<!--
//---------------------------------
//GoTo SCRIPT BY ALEX KEENE 1997
//INFO@FIRSTSOUND.COM
//---------------------------------
 function GoToURL(j) {
  window.status=('Connecting....')
  
var URLis;
 URLis = document.URLframe.Dest.value
  
   if (URLis == "" || URLis.length <= 3)
           { 
     j.value = "Try Again"
      alert('\nOops!\n\nYou must enter a valid Keyword');
         window.status=('Missing data or Invalid. Try again?.')
           } 
    else
        {
 j.value = "Connecting"    
 var location=("http://www.creatingyourmasterpiece.com/" + URLis + ".html");
         this.location.href = location;
window.status=('Connecting Please wait........');
        }
        }
//-->
