﻿     function popUp(url,location,menubar,resize,scroll,status,top,height,width)
		{
			var sFeatures;
			sFeatures = "location=" + location + ",menubar=" + menubar + ",resizable=" + resize + ",scrollbars=" + scroll + ",status=" + status + ",top=" + top + ",height=" + height + ",width=" + width;
			window.open(url,'_blank',sFeatures);
		}
		
		function Country_OnChange(countryDdId, stateDdId, stateTxtId)
			{
				if(document.getElementById(countryDdId).value != 'United States' && document.getElementById(countryDdId).selectedIndex!=0)
				{
					document.getElementById('stateTbl').style.display='';
					document.getElementById('USStateTbl').style.display='none';
					document.getElementById(stateDdId).selectedIndex = 1;
					document.getElementById(stateTxtId).value = '';
				}
				else
				{
					document.getElementById('stateTbl').style.display='none';
					document.getElementById('USStateTbl').style.display='Block';
					document.getElementById(stateTxtId).value = 'Not Applicable';
				}
			}
			
			function SwitchImage(target, imagePath)
			{
			  //document.getElementById('ImageButton1').ImageUrl = ""
			  target.src = imagePath;
			}
			
			function OpenURL(url)
			{
			  location.href=url;
			}
			
			function CellMouseOver(cell,cellLink)
			{
			    //alert(cell.style.background);
			    cell.style.backgroundColor = '#F2F2F2';
			    document.getElementById(cellLink).style.color = '#FF9900';
			    document.getElementById(cellLink).style.fontWeight = 'bold';
			    cell.style.cursor = 'pointer';
			}
			
			function CellMouseOut(cell, cellLink)
			{
			    cell.style.backgroundColor = '#12999D';
			    document.getElementById(cellLink).style.color = 'White';
			    document.getElementById(cellLink).style.fontWeight = 'normal';
			}
			
			function CellMouseClick(link)
			{
			    window.location.href = link;
			}
			
	function PrintOrder(orderID)
    {
      //alert(orderID);
      if(PopupsEnabled())
      {
        var mw=window.open("","Print_Order","resizable=1,menubar=1,scrollbars=1,status=1,location=0,width=800,height=600");
        mw.location.href="./ViewOrder.aspx?IsPrintable=true&OrderID=" + orderID;
      }
      else
      {
        location.href = "./ViewOrder.aspx?IsPrintable=true&OrderID=" + orderID;
      }
    }
    
    function ViewOrder(orderID)
    {
      //alert(orderID);
      if(PopupsEnabled())
      {
        var mw=window.open("","Print_Order","resizable=1,menubar=1,scrollbars=1,status=1,location=0,width=800,height=600");
        mw.location.href="./ViewOrder.aspx?OrderID=" + orderID;
      }
      else
      {
        location.href="./ViewOrder.aspx?OrderID=" + orderID;
      }
    }

    function PopupsEnabled()
    {
        var popUpsBlocked = true;
        var mine = window.open('','','width=1px,height=1px,left=0,top=0,scrollbars=no');
        if(mine==null || typeof(mine)=="undefined")
        {
            popUpsBlocked = true;
        }
        else
        {
            popUpsBlocked = false;
            mine.close();
        }
        return !popUpsBlocked;
    }			
    
