// JavaScript Document


function openPopUp(theURL,winName,features) {
newWindow = window.open(theURL,winName,features);
newWindow.focus();
}

