/*  Utility JavaScript library
 *  (c) 2008-2009 Hackware, LLC
 *  Usage is restricted to use only by Hackware and its affiliate companies.
/*--------------------------------------------------------------------------*/

function checkboxselect(selector,value) {
	jQuery(selector).attr('checked', value);
}

function showtogglemenu(obj){
	//Hide menus
	jQuery(obj).children('ul').toggle('fast');
	return false;
}

function loadpage(pageno) {
    jQuery('#currentpage').val(pageno);
    jQuery('#aspnetForm').submit();
}

function confirmSubmit(msg) {
	return confirm(msg);
}

