/* ============================ 
# JavaScript Document
# ============================ 
# Title : functions.global.js
# Author : Mr. Anuluck Nantajan
# Email : anuluck@minddezign.com
# URL : www.minddezign.com
# Description : All JavaScript
# Created : 2008-01-15
# Last modified : 2008-01-15
# Copyright : MindDezign 2008.
# ============================ */

function MM_openBrWindow(theURL, winName, features)  // Open window : Popup
{
	window.open(theURL, winName, features);
}
function MM_jumpMenu(targ, selObj, restore) // Alternate data
{
	eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
	if (restore) selObj.selectedIndex = 0;
}
function check_uncheck_all(checkname, field)
{
	for (i = 0; i < checkname.length; i++) {
		checkname[i].checked = field.checked? true:false
	}
}
