﻿
 function showtabOne(index) {
  
  var sPath = window.location.pathname;
  //var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
  var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
  var status = true;
   if(sPage == "CardDisplay.aspx")
   {
      var answer = confirm('You are about to leave the designer interface.Your work has been saved.You can retrive your workby clicking recent items. ')
      if (answer)
          {
      	        status = true;
          }
	  else
	      {
	        alert("Thanks for sticking around!,Please complete the process");
	        status = false;
	      }
    }
    
    if(status)
    {
    switch(index) 
        {
            case 0: 
             window.location = "../index.aspx";
                break;
            case 1:
              window.location = "../PriceFrom.aspx";
                break;
            case 2:
               window.location = "../ProductDetails.aspx";
                break;
                 case 3:
                window.location = "../Info.aspx";
                break;
                 case 4:
                  window.location = "../Account.aspx";
                break;
                 case 5:
                window.location = "../Help.aspx";
                break;
                 case 6:
                window.location = "../Contact.aspx";
                break;
                
         }
    
  }

}


function __doPostBack(eventTarget, eventArgument) {
 if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  theForm.__EVENTTARGET.value = eventTarget;
  theForm.__EVENTARGUMENT.value = eventArgument;
  theForm.submit();
 }
 }