function bkb_jump(menu, url){
if(menu.value != ''){
	window.open(url + menu.value, '_self');
	//alert(url);
	//alert(menu.value);
	}
}

function url_jump(url){
	window.open(url, '_self');
	//alert(url);
	//alert(menu.value);
}
function url_jump_blank(url){
	window.open(url, '_blank');
}

function bkb_del_row(url) { //v3.0
 //alert (url);
 window.open(url, '_self');
}

function bkb_openWdw(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function bkb_setTextOfTextfield(objName,x,menu) { //v3.0
var text = menu.value;
 //alert(text);
  var obj = MM_findObj(objName); if (obj) obj.value = text;
 
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function YESNOBox_url_jump(msg, url){  
  //alert(msg);
  if(confirm(msg) == true )
	{
	//window.open(url, '_self');
	//alert('User Chose yes');
	document.returnValue = false;
	eval("parent.location='"+url+"'");	
	}
	else
	{
	//alert('User Chose no');
	}
  //return confirm(msg);
}
function SetBG(msg, de, fld) { 
document.getElementById(de).style.background=msg;
document.getElementById(fld).value = msg;
}