//preload images to make website faster
if (document.images){
  pic1= new Image(2,26); 
  pic1.src="./images/inprofile.jpg"; 
}

//remove text for the domain checker
function removeText(field){
	field.value = '';
}

//Change language
function postlang(){
	document.forms[0].submit();
}

//Change fabrikant
function manufacturer(manufacturer){
	var URL = manufacturer.options[manufacturer.selectedIndex].value;
	window.location.href = URL;
}

// Submit callme / belme
function mySubmit(){
    if (document.value == ''){
        alert('You must enter a value');
        return false;
    }
    else{
        alert('Submitting');
        return true;
    }
}

function myReset(){
    alert('Resetting');
}

function blinkIt(){
	if(!document.all)
		return;
	else{
		for(i=0;i<document.all.tags('blink').length;i++){
			s=document.all.tags('blink')[i];
			s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';
		}
	}
}


