//for search pop up
function StartSearch(page) {
OpenWin = this.open(page, "CtrlWindowSearch", "toolbar=yes,menubar=yes,status=yes,location=no,scrollbars=yes,resizable=yes,width=600,height=500");
} // END

//for profile pop up
function StartProfile(page) {
OpenWin = this.open(page, "CtrlWindowProfile", "toolbar=yes,menubar=yes,status=yes,location=no,scrollbars=yes,resizable=yes,width=600,height=500");
} // END

// pop window ... 
function popPage(href,name,options) { 
  if(href) { 
    if(options==null) { 
      options="location=yes,menubar=yes,resizable=yes,status=yes,scrollbars=yes,toolbar=yes"; 
    } 
    if(name==null) { 
      name="popWindow1"; 
    } 
    var poppedWindow=window.open(href,name,options); 
    poppedWindow.focus(); 
  } 
} // end 