<!--
/* Standard Functions for gpART.cc
   Package TC Indigo Night Chat 
   Author:  Gerald Pechoc
   Version: 1.1
   Date:    2003-01-10
                                             */
                     
                                     
                                             
function DispWin(width, height, content, wint, scroll)  {
   // Version  1.0
   // Date     2002-05-05
   //
   // USAGE: DispImage ( width, height, content, windowname , scrollmode )
   //
   //        scrollmode: auto | noscroll | scroll
   //
   parw = width  // width
   parh = height // height
   par1 = "status=no,toolbar=no,scrollbars=" + scroll + ",resizable=yes,location=no,menu=no,width=" + parw + ",height=" + parh;
   var imgwin = window.open("",wint,par1);
     
   imgwin.document.write(content)
   imgwin.document.close()
}

                                           

function CheckUrl(turl, xlang)  {
   // Version  1.1
   // Date     2003-01-10
   //
   // USAGE: CheckUrl ( EstimatedUrlOfTheCurrentPage, xlang )
   //
   var lang = "xx";
   lang = xlang;
     
   // create page content
   var newContent = "<HTML><BODY>"
   if (lang == "en"){
  	    newContent += "<HEAD><title>gpART Alert Message</title><style type='text/css' media='screen'><!-- body { BACKGROUND-COLOR:#003366; BACKGROUND-IMAGE:URL(pic/backgr1.jpg); COLOR: cyan; } --> </style> </head>"
   		newContent += "<br><H3>Please use as entry URL</H3>"
  		newContent += "<H1>" + turl + "</H1>"
 		newContent += "<H3>The page will be loaded automatically!</H3>"
  		newContent += "(" + lang + ")"
   		}
   if (lang == "de"){
  	    newContent += "<HEAD><title>gpART Alert Message</title><style type='text/css' media='screen'><!-- body { BACKGROUND-COLOR:#003366; BACKGROUND-IMAGE:URL(pic/backgr1.jpg); COLOR: cyan; } --> </style> </head>"
   		newContent += "<br><H3>Bitte verwenden sie als Einstieg den URL</H3>"
  		newContent += "<H1>" + turl + "</H1>"
 		newContent += "<H3>Die Seite wird automatisch geladen!</H3>"
  		newContent += "(" + lang + ")"

   		}
   if (lang == "pt"){
  	    newContent += "<HEAD><title>gpART Alert Message</title><style type='text/css' media='screen'><!-- body { BACKGROUND-COLOR:#003366; BACKGROUND-IMAGE:URL(pic/backgr1.jpg); COLOR: cyan; } --> </style> </head>"
   		newContent += "<br><H3>Please use as entry URL</H3>"
  		newContent += "<H1>" + turl + "</H1>"
 		newContent += "<H3>The page will be loaded automatically!</H3>"
  		newContent += "(" + lang + ")"
   		}
   newContent += "</BODY></HTML>"
   // check Location and reload if necessary
      
   if (document.URL.toLowerCase() != turl.toLowerCase()){
      // Display Alert Window
	  DispWin(500, 200, newContent, 'Alert', "auto")
	  location.href = turl
	  }
}	

// -->
