/******************************************************************************
*                                                                             *
*     customjava.js  -  javascript file by Green Wave Technology              *
*                                                                             *
******************************************************************************/


function emailwriter(prefix, suffix, domain)
{
address=(prefix + '@' + suffix + '.' + domain)
document.write('<A href="mailto:' + address + '">' + address + '</a>')
}

function swapImage()
{
imageArray = new Array('',
   'image1.jpg',
   'image2.jpg',
   'image3.jpg',
   'image4.jpg',
   'image5.jpg',
   'image6.jpg',
   'image7.jpg',
   'image8.jpg',
   'image9.jpg')

   num = Math.round(Math.random()*9 + 1)
   if ( (num == 0) || (num >= imageArray.length) ) document.write("<img width='114' height='63' src='graphics/swatches/image0.jpg'>")
   else document.write("<img width='114' height='63' src='graphics/swatches/"+imageArray[num]+"'>")
}