function introInit() {
	simplePreload( '../images_site/i_b-intro_archarea2.gif', '../images_site/i_b-intro_dealersarea2.gif',  '../images_site/i_b-intro_designcentre2.jpg', '../images_site/i_b-intro_quote2.jpg' )	
}



function switchImage(imgName, imgSrc) 
{
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = imgSrc;
    }
  }
}

// Example:

// simplePreload( '01.gif', '02.gif' ); 

function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}

function processSearch() {

	if (document.forms.searchform.q.value == '') {
		alert('Please enter a keyword');
		document.forms.searchform.q.focus();
		return false;
	}

}

function shopLink(item_id){
	window.location.href = "/shop/index.cfm?fuseaction=info&id=" + item_id.value + "&ct_id=" + item_id[item_id.selectedIndex].title;
}


var popUpWin=0;
function popUpWindow(URLStr, width, height){
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left=200, top=200,screenX=200,screenY=200');
}