//------------------------------------------------------------------------------------------------------------------//
//	COMBO JUMP
//	Original Author: Macromedia Dreamweaver
// 
//	Last Modification Date: 12/28/2005 
//	Last Modified By: Wilbert N. Ng (wilbertng@i-manila.com.ph)
//
//	Description: 
//		Redirects user to a specified page upon selection of combo field.  Now retains the value of passed variable strings.
//
//	Usage: 
//		- Place in select onChange tag the ff: MM_comboJump('parent',this,0,'filename.php','varname','passvarstring')
// 
//------------------------------------------------------------------------------------------------------------------//


function MM_comboJump(targ,selObj,restore,pagename,varname,passvarstring){ //v3.0
  eval(targ+".location='"+pagename+"?"+varname+"="+selObj.options[selObj.selectedIndex].value+passvarstring+"'");
  if (restore) selObj.selectedIndex=0;
}