/*
##########################################
# JavaScript Document จาวาสคริป
##########################################
# Title : functions.global.js
# Author : Mr. Anuluck Nantajan
# Email : anuluck@minddezign.com
# URL : www.minddezign.com
# Description : All Script for JavaScript
# Created : 2009-11-06
# Last modified : 2009-11-06
# Copyright : MindDezign 2009.
##########################################
*/

/* Check all and Uncheck all for check box */
function check_uncheck_all(checkname, field)
{
	for (i = 0; i < checkname.length; i++) {
		checkname[i].checked = field.checked? true:false
	}
}
function MM_jumpMenu(targ, selObj, restore) // Alternate data
{
	eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
	if (restore) selObj.selectedIndex = 0;
}

