/*
Function DateSelect.  Called in CreateUser.aspx.

Opens a window with a calander for the user to select the date.
*/

function DateSelect(strField)
{
 window.open('Calendar.aspx?FormName='+document.forms[0].name +'&Field=ctl00_ContentBar_'+strField,"CalenderDsply","width=250,height=225,resizable=no,toolbar=0,left=950,top=320");
}

