<!--
// ==================================================================//
// JavaScript library for HRDirectorsClub.com                        //
//                                                                   //
//    Date:  05 July 2005                                            //
// Version:  2.0                                                     //
//                                                                   //
// Copyright © 2005 Reed Business Information Ltd.                   //
//                  All rights reserved.                             //
//                                                                   //
// ==================================================================//

function gotoPage(theForm, thePage) {
   theForm.currentPage.value = thePage;
   theForm.submit();
}

function addContact( email ) {
   addURL = "/members/network/directory/add_contact.asp?email=" + escape(email);
   contact=window.open(addURL,"window","scrollbars=yes,status=no,width=450,height=150,resizable=yes");
}

function removeContact( email ) {
   removeURL = "/members/network/directory/remove_contact.asp?email=" + escape(email);
   contact=window.open(removeURL,"window","scrollbars=yes,status=no,width=450,height=150,resizable=yes");
}

// END
//-->