function hideLeftCol(id){

	if(this.document.getElementById(id).style.display=='none'){
		this.document.getElementById(id).style.display='inline';
		this.document.getElementById('contentCol').style.width = '80%';
		document['HideHandle'].src = 'images/hide1.gif';
	}else{
		this.document.getElementById(id).style.display='none';
		
		this.document.getElementById('contentCol').style.width = '98%';
		document['HideHandle'].src = 'images/show1.gif';

	}
}

function WarnDeleteLineItem(blah, the_url) {
	if (confirm("Are you sure to delete " + ((blah)? "' " + blah + " '" : "") + "?")) {
		top.location.href=the_url;
	}
}


