var newWin;

function popUp(theURL) {
newWin=window.open(theURL,'screen_grab','resizable,scrollbars,width=700,height=500');
newWin.focus();
newWin.moveTo(0,0);
return false;
}
