<!--
imgNames = new Array(
"images/b1_v.jpg",
"images/b2_v.jpg",
"images/b3_v.jpg",
"images/b4_v.jpg",
"images/b5_v.jpg",
"images/b9_v.jpg",
"images/b10_v.jpg"
)
loadImgs = new Array()
for(i=0; i < imgNames.length; i++) {
  loadImgs[i] = new Image;
  loadImgs[i].src = imgNames[i];
} 

function getResolution()
{
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  //window.alert( 'Width = ' + myWidth );
  //window.alert( 'Height = ' + myHeight );
document.forms[0].frmWidth.value=myWidth;
document.forms[0].frmHeight.value=myHeight;
}

// function to remove text from newsletter signup
function checkthis(el) {
	if (el.value==" your name") { el.value=''; }
	if (el.value==" your email address") { el.value=''; }
	if (el.value=="search?") { el.value=''; }
}

function form_focus() {
	document.frm_login.frm_user_name.focus();
}

-->