function remName(a, b){
if(a.value==b){
a.value='';
}else if(a.value==''){
a.value=b;
}else{
a.value=a.value;
}
}

function chkName(a, b){
if(a.value==''){
a.value=b;
}else{
a.value=a.value;
}
}

function toggle(elementID){
var target1 = document.getElementById(elementID)
if (target1.style.display == 'none') {
target1.style.display = 'block'
} else {
target1.style.display = 'none'
}
}


var MainImages = new Array()
 
//Random-loading images
MainImages[0] = '../UserMods/img/index_img1.jpg' // replace with names of images
MainImages[1] = '../UserMods/img/index_img2.jpg' // replace with names of images
MainImages[2] = '../UserMods/img/index_img3.jpg' // replace with names of images
MainImages[3] = '../UserMods/img/index_img4.jpg' // replace with names of images
MainImages[4] = '../UserMods/img/index_img5.jpg' // replace with names of images
MainImages[5] = '../UserMods/img/index_img6.jpg' // replace with names of images

var j = 0
var p = MainImages.length;
var preBuffer = new Array()
 
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = MainImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
 
function showMainImage(){
    if(whichImage==0){
    document.write('<a href ="../Scripts/prodView.asp?idproduct=712"><img src="'+MainImages[whichImage]+'" border=0 width=598 height=315></a>');
    }
    else if(whichImage==1){
    document.write('<a href ="../Scripts/prodView.asp?idproduct=710"><img src="'+MainImages[whichImage]+'" border=0 width=598 height=315></a>');
    }
    else if(whichImage==2){
    document.write('<a href ="../Scripts/prodView.asp?idproduct=749"><img src="'+MainImages[whichImage]+'" border=0 width=598 height=315></a>');
    }
    else if(whichImage==3){
    document.write('<a href ="../Scripts/prodView.asp?idproduct=748"><img src="'+MainImages[whichImage]+'" border=0 width=598 height=315></a>');
    }
    else if(whichImage==4){
    document.write('<a href ="../Scripts/prodView.asp?idproduct=682"><img src="'+MainImages[whichImage]+'" border=0 width=598 height=315></a>');
    }
    else if(whichImage==5){
    document.write('<a href ="../Scripts/prodView.asp?idproduct=711"><img src="'+MainImages[whichImage]+'" border=0 width=598 height=315></a>');
    }
}
