<!--
// search_check.js 
function check_first_form() {
  if ((document.quick_find.keywords.value.length == 0) || (document.quick_find.keywords.value == " ")){
  alert('Search Criteria was missing');
  return false;
  } else {
  return true;
  }
}
// coupon_popup.js 
function couponpopupWindow(url) {
 window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=450,height=280,screenX=150,screenY=150,top=150,left=150')
}
//favorite.js  
function setfavorite() {
 url ='http://www.kubbgames.com/index.php';
 title = 'KubbGames';
 if (document.all)
 window.external.AddFavorite(url, title);
 
 else if (window.sidebar)
 window.sidebar.addPanel(title, url, "");
}
//-->

