

function disabled_input(){

var url = window.location.href;
url = url.toUpperCase();	
var input = document.getElementsByTagName('span');
	if(input && url.indexOf('PRICES') != -1) {
		for(var i=0;i<input.length;i++){
			if (input[i].className=='more'){
				input[i].outerHTML = '';
			}
				
		}
	}
}
disabled_input();

var url = window.location.href;
var bj_note = document.getElementById("bj_note");
url = url.toUpperCase();

if(url.indexOf('PRICES/2') != -1){
 bj_note.style.display = "";
}

if(url.indexOf('PRICES/5') != -1){
 window.location = '/html/prices/5/200804/29-2097.html';
}

