function inStock(pcode)
{
var ok = true;
    if( pcode=='-1')
	{
    	ok = false;
	}
	return ok;
}

