function goURL(sCat) {
 var sURL = 'http://www.timewellcorp.com/Merchant2/merchant.mvc?Screen=CTGY&Store_Code=TW&Category_Code='
 if (typeof(twUser) == 'undefined') {
   sCat =  sCat.substring(0, 4) + '_Demo'
 }
 sURL = sURL + sCat
 window.location.href = sURL
 return true
}
function demoGoURL(sCat) {
 if (typeof(twLoggedin) == 'undefined') {
  document.location.href='http://www.timewellcorp.com/Merchant2/merchant.mvc?Screen=LOGN&Store_Code=TW'
 } else {
  if (typeof(twUser) == 'undefined') {
   alert ('Your wholesale account has not yet been approved. \nPlease send in the required resale document and \ncall us toll free at 1-800-950-8580.')
  } else {
   var sURL = 'http://www.timewellcorp.com/Merchant2/merchant.mvc?Screen=CTGY&Store_Code=TW&Category_Code='
   sURL = sURL + sCat
   window.location.href = sURL
  }
 }
}
function needLogin() {
 if (typeof(twLoggedin) == 'undefined') {
  document.location.href='http://www.timewellcorp.com/Merchant2/merchant.mvc?Screen=LOGN&Store_Code=TW'
 } else {
  if (typeof(twUser) == 'undefined') {
   alert ('Your wholesale account has not yet been approved. \nPlease send in the required resale document and \ncall us toll free at 1-800-950-8580.')
  }
 }
}
