function popUpSubPage(URL) {

var hobo = window.open(URL, "Popup", "height=540,width=680,location=no,scrollbars=yes,menubars=no,toolbar=no,resizable=yes");
hobo.focus();
} 

function popUpTwoSubPage(URL) {

var hobo = window.open(URL, "PopupTwo", "height=540,width=680,location=no,scrollbars=yes,menubars=no,toolbar=no,resizable=yes");
hobo.focus();
} 