function antiquewatches_scrollDivGet(div_id){
	var strCook = document.cookie;
	if(strCook.indexOf('!~') != 0){
		var intS = strCook.indexOf('!~');
		var intE = strCook.indexOf('~!');
		var strPos = strCook.substring(intS+2,intE);
		document.getElementById(div_id).scrollTop = strPos;
		document.getElementById(div_id).scrollTop = strPos;
	}
	
}

function antiquewatches_scrollDivSet(div_id){
	var intY = document.getElementById(div_id).scrollTop;
	document.cookie = "yPos=!~" + intY + "~!";
}

function antiquewatches_scrollDivOverride(div_id){
	var intY = 0;
	document.cookie = "yPos=!~" + intY + "~!";
}
