//------------------------------------------------------------------------------------------------------------------//
//	GO TO COMBO PAGE
//	Original Author: Wilbert N. Ng (wilbertng@i-manila.com.ph)
// 
//	Last Modification Date: 12/05/2005 
//	Last Modified By: Wilbert N. Ng (wilbertng@i-manila.com.ph)
//
//	Description: 
//		Redirects user to a specified page upon select of combo option.
//
//	Usage: 
//		- Place in select onChange tag in a button the ff: 
//			onChange="return gotopage(document.formname, \'fieldname\');"
// 
//------------------------------------------------------------------------------------------------------------------//


function gotoComboPage(form, fieldname) {
	if ('form.'+fieldname+'.options[form.'+fieldname+'.selectedIndex].value!=""') { form.submit(); }
	else { return false; }
}