// THE JQUERY HANDLER
  var j = jQuery;
  // VARS
  childPrice  = 200;
      
// THE JQUERY WRAP ==================================================
  function f(fieldid)
  { return $('#'+fieldid.replace(/:/g,"\\:").replace(/\./g,"\\."));  }; 
// ==================================================================
// GET THE FIELD VALUE ==============================================
  function v(fieldid)
  { return f(fieldid).val(); };
// ==================================================================
// SET THE FIELD VALUE ==============================================
  function s(fieldid, fieldvalue)
  { return f(fieldid).val(fieldvalue); };
// ==================================================================  
// GET THE JSON DATA ================================================
  function ajxJSN(fromURL, fromFunction)
  { fromURL = fromURL + '&iss=1&isjsn=1&dlt=' + ajxUNIX();  };
// ==================================================================
// MONEY CONVERTER ==================================================
  function usMoney(theConvertValue)
  { return  $.currency(theConvertValue); };   
// ==================================================================
// URL REDIRECTION ==================================================
  function urlRedirect(newURL)
  { window.location.replace(newURL);  };
// ==================================================================
// THE CACHE CONTROL ON AJAX ========================================  
  function ajxUNIX()
  { returnText  = ''; 
    DummyDate = new Date();
    DummyReturn = String(DummyDate.getFullYear() + '' + DummyDate.getMonth() + '' + DummyDate.getDay() + '' + DummyDate.getHours() + '' + DummyDate.getMinutes() + '' + DummyDate.getSeconds() + '' + (Math.ceil(Math.random() * 1000)));    
    returnText = DummyReturn;
    return returnText; };
// ==================================================================     