
function locationChange( selectObj )
{	
//	input_box=confirm("You are about to change departments which will clear your basket. If you have items is your basket, please complete in this store before you move departments.\nPress Cancel to stay here or OK to change department.");
//	if (input_box==true)
//  {
		location.href = selectObj.options[selectObj.selectedIndex].value +"?ns=y";
//	}
}

function changeDeptConfirm()
{
		input_box=confirm("You are about to change departments which will clear your basket. If you have items is your basket, please complete in this store before you move departments.\nPress Cancel to stay here or OK to change department.");
		if(input_box==true)
		{
			return true;		
		}
		else
		{
			return false;
		}
}
