// JavaScript Document

<!--
   var allCookies = document.cookie;
   var start = allCookies.indexOf("uname=");
   if (start != -1) {
     start += 6;
     var end = allCookies.indexOf(";", start);
     if (end == -1)
     end = allCookies.length;
     var theName = allCookies.substring(start, end);	
     document.write("<p>Welcome back " + theName + "!</p>");
   } else {
	   document.write("<p> Welcome  !</p>");
   }
   //-->