function changeList(){
obList=document.getElementById('s2');
obList.options.length=0;
if (changeList.arguments[1]=='0')
{
 nextOp=new Option('                          ','                          ');obList.options.add(nextOp);
 
}
if (changeList.arguments[1]=='1')
{
 nextOp=new Option('CDs on spindle','CDs on spindle');obList.options.add(nextOp);
 nextOp=new Option('CDs in jewel cases','CDs in jewel cases');obList.options.add(nextOp);
 nextOp=new Option('CDs in slim cases','CDs in slim cases');obList.options.add(nextOp);
 nextOp=new Option('CDs in card sleeves','CDs in cardboard sleeves');obList.options.add(nextOp);
 nextOp=new Option('CDs in card wallets','CDs in cardboard wallets');obList.options.add(nextOp);
 nextOp=new Option('CDs in DigiPaks','CDs in DigiPaks');obList.options.add(nextOp);
 nextOp=new Option('Other','Other');obList.options.add(nextOp);
}
if (changeList.arguments[1]=='2')
{
 nextOp=new Option('DVDs on spindle','DVDs on spindle');obList.options.add(nextOp);
 nextOp=new Option('DVDs in DVD cases','DVDs in DVD cases');obList.options.add(nextOp);
 nextOp=new Option('DVDs in jewel cases','DVDs in jewel cases');obList.options.add(nextOp);
 nextOp=new Option('DVDs in card sleeves','DVDs in cardboard sleeves');obList.options.add(nextOp);
 nextOp=new Option('DVDs in card wallets','DVDs in cardboard wallets');obList.options.add(nextOp);
 nextOp=new Option('DVDs in DigiPaks','DVDs in DigiPaks');obList.options.add(nextOp);
 nextOp=new Option('Other','Other');obList.options.add(nextOp);
}
if (changeList.arguments[1]=='3')
{
 nextOp=new Option('CD booklet and traycard','CD booklet and traycard');obList.options.add(nextOp);
 nextOp=new Option('DVD inlay and insert','DVD inlay and insert');obList.options.add(nextOp);
 nextOp=new Option('Cardboard sleeves','Cardboard sleeves');obList.options.add(nextOp);
 nextOp=new Option('Cardboard wallets','Cardboard wallets');obList.options.add(nextOp);
 nextOp=new Option('DigiPaks','DigiPaks');obList.options.add(nextOp);
 nextOp=new Option('Posters','Posters');obList.options.add(nextOp);
 nextOp=new Option('Other','Other');obList.options.add(nextOp);
}
if (changeList.arguments[1]=='4')
{
 nextOp=new Option('my audio is 1-20 mins','my audio is 1-20 mins');obList.options.add(nextOp);
 nextOp=new Option('my audio is 21-40 mins','my audio is 21-40 mins');obList.options.add(nextOp);
 nextOp=new Option('my audio is 41-60 mins','my audio is 41-60 mins');obList.options.add(nextOp);
 nextOp=new Option('my audio is more than 60 mins','my audio is more than 60 mins');obList.options.add(nextOp);
}
if (changeList.arguments[1]=='5')
{
 nextOp=new Option('-----------','-----------');obList.options.add(nextOp);
}
}
function on()
{
	document.cont.customerName.focus();
	return true;
}
function validate()
{
	if(document.cont.customerName.value=="")
	{
		alert("Please enter your name");
		document.cont.customerName.focus();
		return false;
	}
	
	var string1=document.cont.customerEmail.value;
		if(string1=="")
		{
			alert("Please enter your e-mail address");
			document.cont.customerEmail.focus();
			return false;
		}
		if((string1.indexOf("@")==-1)|| (string1.indexOf(".")==-1))
		{
			alert("Please enter a valid email address");
			document.cont.customerEmail.focus();
			return false;
		}
		
		if(document.cont.cusomterTelNumber.value=="")
	{
		alert("Please enter your telephone number");
		document.cont.cusomterTelNumber.focus();
		return false;
	}
	if(document.cont.customerProduct.value=="Please select a product")
	{
		alert("Please select a product");
		document.cont.customerProduct.focus();
		return false;
	}	
return true;
} 
var bo_ns_id = 0;

function startIeFix(){
  if(isIE()){
    document.write('<div id="bo_ns_id_' + bo_ns_id + '"><!-- ');
  }
}

function endIeFix(){
  if(isIE()){
    document.write('</div>');
    var theObject = document.getElementById("bo_ns_id_" + bo_ns_id++);
    var theCode = theObject.innerHTML;
    theCode = theCode.substring(4 ,9+theCode.indexOf("</object>"))
    document.write(theCode);
  }
}

function isIE(){
  // only for Win IE 6+
  // But not in Windows 98, Me, NT 4.0, 2000
  var strBrwsr= navigator.userAgent.toLowerCase();
  if(strBrwsr.indexOf("msie") > -1 && strBrwsr.indexOf("mac") < 0){
    if(parseInt(strBrwsr.charAt(strBrwsr.indexOf("msie")+5)) < 6){
      return false;
    }
    if(strBrwsr.indexOf("win98") > -1 ||
       strBrwsr.indexOf("win 9x 4.90") > -1 ||
       strBrwsr.indexOf("winnt4.0") > -1 ||
       strBrwsr.indexOf("windows nt 5.0") > -1)
    {
      return false;
    }
    return true;
  }else{
    return false;
  }
}

function popup(popname,popwidth,popheight) { apopup=window.open(popname,'jsppopup','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+(popwidth+20)+',height='+(popheight+30));}