<!--
var bIsNC4 = (navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4);
var bIsIE4 = (navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 );
var bIsSupportOK = bIsNC4 || bIsIE4;

var nMaxItem = 4;
var NameIndex = 0;
var DefaultState = 1;
var MouseOverState = 2;
var MouseDownState = 3;

var imgCounter = 0;
var ImageList = new Array();

function AddImageToImageList(name, Default, MouseOver, MouseDown)
{
    ImageList[imgCounter] = new Array(nMaxItem);
    ImageList[imgCounter][NameIndex] = name;
    ImageList[imgCounter][DefaultState] = new Image();
    ImageList[imgCounter][DefaultState].src = Default;
    if (MouseOver != "") {
        ImageList[imgCounter][MouseOverState] = new Image();
        ImageList[imgCounter][MouseOverState].src = MouseOver;
    }
    if (MouseDown != "") {
        ImageList[imgCounter][MouseDownState] = new Image();
        ImageList[imgCounter][MouseDownState].src = MouseDown;
    }

    imgCounter++;
}

function ReplaceImage(name, state)
{
    if (bIsSupportOK) {
        for (i = 0; i < imgCounter; i++) {
            if (document.images[ImageList[i][NameIndex]] != null) {
                if ((name == ImageList[i][NameIndex]) && (ImageList[i][state] != null))
                    document.images[name].src = ImageList[i][state].src;
            }
        }
    }
}
AddImageToImageList("rollover1", "images/buth_normal.gif", "images/buth_over.gif", "images/buth_down.gif");

AddImageToImageList("rollover2", "images/butt_normal.gif", "images/butt_over.gif", "images/butt_down.gif");

AddImageToImageList("rollover3", "images/butc_normal.gif", "images/butc_over.gif", "images/butc_down.gif");

AddImageToImageList("rollover4", "images/butg_normal.gif", "images/butg_over.gif", "images/butg_down.gif");

AddImageToImageList("rollover5", "images/buts_normal.gif", "images/buts_over.gif", "images/buts_down.gif");

AddImageToImageList("rollover6", "images/buttr_normal.gif", "images/buttr_over.gif", "images/buttr_down.gif");

AddImageToImageList("rollover7", "images/butcl_normal.gif", "images/butcl_over.gif", "images/butcl_down.gif");
// -->

<!-----
// (c) 2000 Chirag Patel
// no error message on Net browsers Chirag Patel
// chirag928@hotmail.com
var cP = navigator.appName;
function click() {
     if (cP=='Microsoft Internet Explorer')
     {
          if (event.button==2)
          {
               str = "Unauthorized Reproduction Prohibited. - Global Welding Technology";
               str = str + "";
               str = str + "";
               alert (str);
          }
     }
}
document.onmousedown=click

//------->

<!--
function FormRedirect(){
setTimeout('this.document.location.href = "index.html"',5000);}
//-->

<!-- 

var day="";

var month="";

var myweekday="";

var year="";

mydate = new Date();

Date = document.lastModified;

myday = mydate.getDay();

mymonth = mydate.getMonth();

myweekday= mydate.getDate();

weekday= myweekday;

myyear= mydate.getYear();

year = myyear

if(myday == 0)

day = " Sunday, "

else if(myday == 1)

day = " Monday, "

else if(myday == 2)

day = " Tuesday, "

else if(myday == 3)

day = " Wednesday, "

else if(myday == 4)

day = " Thursday, "

else if(myday == 5)

day = " Friday, "

else if(myday == 6)

day = " Saturday, "

if(mymonth == 0) {

month = "January "} 

else if(mymonth ==1)

month = "February "

else if(mymonth ==2)

month = "March "

else if(mymonth ==3)

month = "April "

else if(mymonth ==4)

month = "May "

else if(mymonth ==5)

month = "June "

else if(mymonth ==6)

month = "July "

else if(mymonth ==7)

month = "August "

else if(mymonth ==8)

month = "September "

else if(mymonth ==9)

month = "October "

else if(mymonth ==10)

month = "November "

else if(mymonth ==11)

month = "December "

//-->