function validateProduct(form)
{
	if (form.cboMaterial.value == '0')
	{
		alert('Please select a material from the drop down list.');
		return false;
	}
	else if (form.cboQuantity.value == '0')
	{
		alert('Please select the number of sheets required.');
		return false;
	}
	else if (form.cboQuantity[form.cboQuantity.selectedIndex].text == '>10,000 Sheets - Call')
	{
		alert('Please call us at 1-866-226-8669 for orders over 10,000 sheets.');
		return false;
	}
	
	return true;
}

function openDetail(page)
{		
	window.open(page,"thisName", "directories=0,height=300,width=325");
}

function displayWindow(url,width,height) 
{
   window.Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',screenX=0,screenY=0,top=0,left=0,resizable,scrollbars,location=0,status=1');
}