action_prefix_sg="http://h50055.www5.hp.com/ipg/supplies/sg/";
if (location.href.indexOf ("sgnstg02") >= 0)
  action_prefix_sg = "";	


function PrinterCategorySelector_sg(thisForm)
{
  if(thisForm.partno.value!='')
  {
    // Search for Part Number
	  thisForm.action=action_prefix_sg + "supplies_prodname.asp"
   	  thisForm.submit();  	
  }
  else
  {
	  if(thisForm.pcat.options[thisForm.pcat.selectedIndex].value<0)
	  {
		alert("Please select a Printer Category or type a Part Number");
		return;		
	  }
	  else
	  {
		  thisForm.action=action_prefix_sg + "hardware_com.asp"
	    	  thisForm.submit();  	
	  }
  }
}

function enterpartno_sg(thisForm)
{
	if(thisForm.partno.value!='')
	{
		// Search by part number
		thisForm.action=action_prefix_sg + "supplies_prodname.asp";
		thisForm.submit();
	}
	else
	{
		alert("Please enter a cartridge or media partnumber");
	}
}
function enterprintername_sg(thisForm)
{
	if(thisForm.pname.vale!='')
	{
		  thisForm.action=action_prefix_sg + "hardware_com.asp";
	    	  thisForm.submit();  	
	}
	else
	{
		alert("Please enter a printer name");
	}
}
function selectptype_sg(thisForm)
{
	  if(thisForm.pcat.options[thisForm.pcat.selectedIndex].value<0)
	  {
		alert("Please select a Printer Type");
		return;		
	  }
	  else
	  {
		  thisForm.action=action_prefix_sg + "hardware_com.asp";
	    	  thisForm.submit();  	
	  }
}