function categoryJump(selOBJ) 
{ 
	n = selOBJ.selectedIndex; 
	location.href = selOBJ.options[n].value; 
}
function BrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

//for Window Open
function winOpen(theURL) {
	nw = window.open(theURL, '_blank');
	nw.focus();
}
