// opens new window with something in it
function popup(theID) {
theURL = 'popup.aspx?id=' + theID; 
  window.open(theURL,'myWindow','width=500,height=500,scrollbars=yes,resizable=yes,top=50,left=50');
}
