
// function to pop open windows

function pop_open(theURL,winName,features)  {
window.open(theURL,winName,features);
}


