function oos()
{
	var msg = "You have selected an item\n"+
		"    that is marked as\n\n"+
		"       OUT OF STOCK\n\n"+
		"If you click 'OK' this item will be\n"+
		"added to your basket, and it will\n"+
		"be put on back order for you, if you\n"+
		"     confirm payment.\n\n"+
		"If you DON'T want this, click 'Cancel'.\n\n";
	if (confirm(msg))
		return true;
	else
		return false;
}

