var boodschap = 'Made by www.4ro.nl'; 
function barstatus()
{window.status = boodschap;
timerID= setTimeout("barstatus()", 25);
}
timerID= setTimeout("barstatus()", 25);

//zoom image 
function ViewImage(ifile,ix,iy,ititle) { 
var win;
var sWidth;
var sHeight;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no");
if (NS) {
sWidth = win.innerWidth;
sHeight = win.innerHeight;
} else {
sWidth = win.document.body.clientWidth;
sHeight = win.document.body.clientHeight;
}
if(sWidth!=ix || sHeight!=iy) {
win.close();
setTimeout("ViewImage('"+ifile+"',"+ix+","+iy+",'"+ititle+"')", 250);
return;
}
win.document.open();
win.document.write("<html><head><title>"+ititle+"</title>");
win.document.write("</head><body>");
win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
win.document.write("<img src="+ifile+"></div></body></html>");
win.document.close();
}

// Geen Context Menu (no right click)
document.oncontextmenu = function(){return false}
if(document.layers) {
    window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown = function(e){
        if(e.target==document)return false;
    }
}
else {
    document.onmousedown = function(){return false}
}

//scroll text
function scrollit(seed) {
var m1  = "Welcome !                                        ";
var m2  = "   made by 4ro Web & Graphic Design";
var m3  = "   visit us at   www.4ro.nl                                        ";
var m4  = " ";
var msg=m1+m2+m3+m4;
var out = " ";
var c   = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
      }
   }
}

<!--valida formulario contact us
function validate()
{
if ((document.formulario.naam.value=="")||(document.formulario.email.value==""))
{
alert ("U mag uw naam en email in de formulier volledig invullen!");
return false;
}
else
{
if (document.all || document.getElementById) {
for (i = 0; i < formulario.length; i++) {
var tempobj = formulario.elements[i];
if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
tempobj.disabled = true;
}
setTimeout('alert("Thank you for contact us / Bedankt!")', 2000);
return true;
}}
}
//-->

<!--valida formulario order 
function validate2()
{
if ((document.formulario.naam.value=="")||
(document.formulario.straat.value=="") || (document.formulario.nummer.value=="") || (document.formulario.postcode.value=="") || (document.formulario.pcletters.value=="") || (document.formulario.plaats.value=="") || (document.formulario.telefoon.value=="") || (document.formulario.email.value==""))
{
alert ("U mag de formulier volledig invullen!");
return false;
}
else
{
if (document.all || document.getElementById) {
for (i = 0; i < formulario.length; i++) {
var tempobj = formulario.elements[i];
if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
tempobj.disabled = true;
}
setTimeout('alert("Bedankt!")', 2000);
return true;
}}
}
//-->
