/**
  * Bicycle Club of Philadelphia: Includes
  * js/windows.js - Shows different popup windows, code hidden with function names.
  *
  * by Tom Scott of DarkCity Designs. Commissioned by Jeff Bakely.
  */

function ridelevels() {
	window.open("inc/js_ridelevels.php", "ride_levels", "directories=no,location=no,menubar=no,resizeable=no,scrollbars=yes,status=no,titlebar=yes,toolbar=no,width=500,height=250")
}

/*
 * viewProfile(id) - Pops up a box with the user's profile data.
 *		id: the userid of the member in question
 * NOTE by Sam Wiley:  Changed this from inc/js_viewprofile etc to /newbcp/inc/js_viewprofile etc
 *                      May have to be fixed when pages are made live
 */
function viewProfile(id) {
	window.open("/newbcp/inc/js_viewprofile.php?id="+id, "profile_"+id, "directories=no,location=no,menubar=no,resizeable=no,scrollbars=yes,status=no,titlebar=yes,toolbar=no,width=500,height=350")
}

/*
 * Attempt to open a window to pick a date  
*/
function pickDate(caller, tbox)  {
    window.open("/newbcp/datepicker/dodatepick.php")
}

    