﻿
function OnClientClose(oWnd, eventArgs) {

}

function callReserve(typeConsultationID) {
    var fecha1 = new Date();
    var inst1 = 'MyTable_' + fecha1.getHours() + '_' + fecha1.getMinutes() + '_' + fecha1.getSeconds();
    var url = '';
    url = "../Actions/ReservarCita.aspx?typeConsultationID="+typeConsultationID+"&uniqueid=" + inst1 + "";
    var wnd = parent.radopen(url);
    wnd.setSize(400, 400);
    wnd.center();
    // return false;
}

function goHome() {
    alert("home");
    window.location = "http://localhost/lebed/";

}
