function time() {
	vr = new Date();
	zeroMin = '';
	zeroHor = '';
	if (vr.getMinutes() < 10) zeroMin = '0';
	if (vr.getHours() < 10) zeroHor = '0';
	document.getElementById('timeShow').innerHTML =  zeroMin + vr.getHours() + ':' + zeroMin + vr.getMinutes();
	setTimeout("time()", 1000)
}
	
function resizeDivCompare() {
	return;
	var obj = document.getElementById("contentCompare");
	if(!obj) return;
	var objMain = document.getElementById("main");
	if(!objMain) return;
//	alert(objMain.clientWidth);
	obj.style.width = (objMain.offsetWidth-70)+"px";
//	obj.innerHTML = obj.style.width;
}