function mOvr(src,clrOver){
	if (!src.contains(event.fromElement)){
		src.style.cursor = 'hand';
		src.bgColor = clrOver;
	}
}

function mOut(src,clrIn){
	if (!src.contains(event.toElement)){
		src.style.cursor = 'default';
		src.bgColor = clrIn;
	}
}


function link(url)
{
  window.location = url
}




function doProduct(page)
{
  var page = page.value;
  
  if( page != "" ){
    var url = ("http://www.chadwickstimber.com.au/cgi-bin/go.cgi?p=" + page )
    window.location = url;
  }
}  

function printPop() {

  printWindow = window.open("go.cgi?f=$f&p=$p&mode=print", "_blank", "toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=600")

}