
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Premshree Pillai (premshree@hotmail.com) -->
<!-- Web Site:  http://qik.cjb.net -->

browser = navigator.appName;
version = navigator.appVersion;
//alert(browser + " \n" + version);
if ( browser != "Microsoft Internet Explorer" ) 
{ 

window.onerror = null;
 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS4 = (bName == "Netscape" && bVer >= 4);
 var IE4 = (bName == "Microsoft Internet Explorer"
 && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer"
 && bVer < 4);
 var i=0;

// Change the position of the ticker
 var top_pos = 73;
 var left_pos = '25%';

// Change the speed of the ticker (in milliseconds)
 var time_length = 2800;

 var div_name = "qiksearch";

// Enter messages for the ticker
 var ticker_msg = new Array(
     "Welcome to <B><FONT COLOR='#DC143C'>Games</FONT></B> Dimensionalized",
     "Learn all about Me<B>.</B>",
     "or Test out my <B>Java</B> Programs",
     "<B><FONT COLOR='#FF0000'>Check out a</FONT> DIMENSIONALIZED <FONT COLOR='#FF0000'>Flash game!</FONT></B>",
     "<B><FONT COLOR='#FF4500'>What </FONT> <FONT COLOR='#FFFF00'>colour</FONT> <FONT COLOR='#228B22'>are you?</FONT></B>" );

// Enter the URL's for the above messages
 var ticker_url = new Array(
     "http://www.dimensionalized.com/game/index.html",
     "http://www.dimensionalized.com/about/about.html",
     "http://www.geocities.com/onefocus99/holdingfolder/index2.html",
     "http://www.geocities.com/onefocus99/flash/Chess-TheNextGeneration2-a.html",
     "http://www.dimensionalized.com/about/real_colors/yourColor-java.htm" );

var ticker_len = ticker_msg.length;
for(var l=0; l<ticker_len; l++)
{
document.write('<div id="' + div_name + l + '" style="position:absolute; visibility:hidden; top:' + top_pos + '; left:' + left_pos + '">' + '<table bgcolor="#CD7F32" cellspacing="0" cellpadding="1" width="400"><tr><td><table width="100%" bgcolor="#00FFFF"><tr><td><center><a href="' + ticker_url[l] + '" class="tick">' + ticker_msg[l] + '</center></a></td>');
document.write('</tr></table></td></tr></table>' + '</div>');
}
if (NS4 || IE4) {
 if (navigator.appName == "Netscape") {
 layerStyleRef="layer.";
 layerRef="document.layers";
 styleSwitch="";
 }else{
 layerStyleRef="layer.style.";
 layerRef="document.all";
 styleSwitch=".style";
 }
}
//SCROLL
function tick(){
if (NS4 || IE4) {
 if(i<ticker_len)
 {
  if(i==0)
  {
   eval(layerRef+'["'+div_name+(ticker_len-1)+'"]'+
   styleSwitch+'.visibility="hidden"');
  }
  if(i>0)
  {
   eval(layerRef+'["'+div_name+(i-1)+'"]'+
   styleSwitch+'.visibility="hidden"');
  }
 eval(layerRef+'["'+div_name+i+'"]'+
 styleSwitch+'.visibility="visible"');
 }
 if(i<ticker_len-1)
 {
 i++;
 }
 else
 {
 i=0;
 }
 setTimeout("tick()",time_length);
 }
}
tick();



}
else
{}
