/**
 * Ichiban - http://www.ichibaninternational.com
 *
 * JavaScript - misc.js  
 * JavaScript file for both the front and back end of the Ollie & Nic site
 * 
 * @copyright 2008
 * @package OllieAndNic
 * @subpackage JavaScript
 */
 
/**
 * check for valid numeric strings	
 */
function IsNumeric(strString) {
   //  check for valid numeric strings	
   var strValidChars = "0123456789.-";
   var strChar;
   var blnResult = true;

   if (strString.length == 0) return false;

   //  test strString consists of valid characters listed above
   for (i = 0; i < strString.length && blnResult == true; i++)
      {
      strChar = strString.charAt(i);
      if (strValidChars.indexOf(strChar) == -1)
         {
         blnResult = false;
         }
      }
   return blnResult;
}


/**
 * Redirects user to correct page on the homepage QuickSearch
 */
function ON_quick_search(f) {
	if(f.category.value) {
		document.location.href = f.category.value+f.price.value;
	}
	return false;
} 
function ON_popup(url) {
	window.open(url, 'popup', 'width=650,height=450,directories=0,scrollbars=1,toolbar=0,resizable=1,menubar=0,location=0');
	return false;
}
