function popUp(strURL,strWidth,strHeight) {
var strOptions="";
strOptions="status,height="+strHeight+",width="+strWidth;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
} 