   function outBound(url)
       {
      /*  var w = screen.availWidth||screen.width;
	   var h = screen.availHeight||screen.height; */
	    
var w = 650;
var h = 450; 

        window.open('http://' + url,'newWIN','toolbar=yes,directories=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes,width=' + w + ',height=' + h + ',screenX=0,screenY=0,left=0,top=0');
       }  

function cBox(chbox) {
box = eval(chbox);
box.checked = !box.checked;
}

