function check()
{	
	if ((Trim(document.all.sn.value)=="A83729D1-3898-4746-9427-4378878DF0BC")||(Trim(document.all.sn.value)=="MIPODW2082008"))
	{
	window.location.href="http://secure.emetrix.com/order/product.asp?PID=114858419";
	}
	else
	{
	window.location.href="sn_wrong.htm";
	}  
}

function Trim(InString) {

   strLen = InString.length;
   if(strLen==0) 
        OutString = InString;
   else {
       i=0;
       while ( InString.charAt(i) == " ") {
          i++;
       }
       j=strLen-1;
       while ( InString.charAt(j) == " ") {
          j--;
       }
       if(strLen==i)
        OutString = "";
       else
        OutString = InString.substring(i,j+1);
   }
   return OutString;
}
