in reply to can i disable certain warnings?

As several of the posts have said, it is better to just fix the source of the warning. If you mask out that warning, you won't get it later when you edit your file later and make a mistake. Its well worth spending the time now to find a way to make it work. Maybe check to see if vars are defined first, like:<code> if( defined ($var ) ) { # use $var }