//------------------------------------------------------------------------------------------------------------------//
//	GO TO URL
//	Original Author: Macromedia Dreamweaver
// 
//	Last Modification Date: 09/20/2005 
//	Last Modified By: Wilbert N. Ng (wilbertng@i-manila.com.ph)
//
//	Description: 
//		Redirects user to a specified page upon button click.
//
//	Usage: 
//		- Place in select onClick tag in a button the ff: 
//			MM_goToURL(\'parent\', \'add_'.$thispage.'\');return document.mm_returnValue
// 
//------------------------------------------------------------------------------------------------------------------//


function MM_goToURL() { //v3.0
	var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
	for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
