<!--
function nextpage() {
	var path = new String();
	path = document.location.pathname;
	len = path.length;
	if (path.substr(len - 5, 1) == 'x') {
		path = path.substr(0, len - 9) + 'p2.htm';
	} else {
		next = parseInt(path.substr(len - 5,1));
		next++;
		path = path.substr(0 , len-5 ) + next + '.htm';
	}
	document.location.href = path;
}

function backpage() {
	var path = new String();
	path = document.location.pathname;
	len = path.length;
	if (path.substr(len - 5, 1) == 'x') {
		// null statement
	} else {
		back = parseInt(path.substr(len - 5,1));
		back--;
		path = path.substr(0 , len-5 ) + back + '.htm';
	}
	document.location.href = path;
}

function sample(url){
window.open('/prod/detail/'+url,'Sample','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=700,height=480');
}
//-->