function ShowMoreInfo(nInfo){  
	var winl = (screen.width - 434) / 2;  
	var wint = (screen.height - 241) / 2;  
	window.open('/MoreInfo.asp?'+nInfo,'mi'+nInfo,'width=434,height=241,top='+wint+',left='+winl+'', true);  
}

function ChangeItem(x,objForm,objExpand,objCollapse) {
if (x == 1) { //Display Form, set = to none will hide the div, set = to '' will show
	objForm.style.display='';
	objExpand.style.display='none';
	objCollapse.style.display='';
} else {
	objForm.style.display='none';
	objExpand.style.display='';
	objCollapse.style.display='none';
 }
}
