<?php
// Class to reload multiple selection fields
// Made By Sujith Nair [
[email protected]]
// On August 13, 2001
class multi {
function sel($name,$val)
{
	// Check whether the field has the value
	if(strstr($name,$val))
	{
		return "selected";
	}
}
// End of class
}
?>