function isOver(id){
	document.getElementById(id).style.borderRight='1px solid';
	document.getElementById(id).style.borderRightColor='#cccccc';
	document.getElementById(id).style.borderTopcolor='#cccccc';
	document.getElementById(id).style.borderTop='1px solid';
	document.getElementById(id).style.paddingTop='1px';
	document.getElementById(id).style.paddingLeft='1px';
	document.getElementById(id).style.paddingBottom='1px';
	document.getElementById(id).style.borderLeft='1px solid';
	document.getElementById(id).style.borderLeftColor='#cccccc';
	document.getElementById(id).style.borderBottom='1px solid';
	document.getElementById(id).style.borderBottomColor='#cccccc';
	document.getElementById(id).style.margin='0px';
	document.getElementById(id).style.backgroundColor='#f1f1f1';
}
function isOut(id){
	document.getElementById(id).style.borderRight='0px solid';
	document.getElementById(id).style.borderRightColor='#cccccc';
	document.getElementById(id).style.borderTopcolor='#cccccc';
	document.getElementById(id).style.borderTop='0px solid';	
	document.getElementById(id).style.paddingTop='0px';
	document.getElementById(id).style.paddingLeft='0px';
	document.getElementById(id).style.borderLeft='0px solid';
	document.getElementById(id).style.borderLeftColor='#cccccc';
	document.getElementById(id).style.paddingBottom='0px';
	document.getElementById(id).style.borderBottom='0px solid';
	document.getElementById(id).style.borderBottomColor='#cccccc';
	document.getElementById(id).style.margin='0px';
	document.getElementById(id).style.backgroundColor='#ffffff';
}
function newWindow(url) {
	window.open(url, "","toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1"); 
	return true;
}