function openHelp(theURL, Name) {
var paddingleft = (screen.width - 540) / 2;
var height = screen.height * 0.7;
var paddingtop = (screen.height - height) / 2;
winProp = 'width=540,height='+height+',left='+paddingleft+',top='+paddingtop+',scrollbars=yes,resizable, status=yes';
Win = window.open(theURL, Name, winProp)
if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}