﻿var popUp;

//function SetControlValue(controlID, newDate, isPostBack)
//{
//    popUp.close();
//    //Changed the form array to point to form[0]. 
//    //This is because the master page search form throws off the count. 
//    //If we ever get rid of that first form we need to change this.
//    document.forms[0].elements[controlID].value=newDate;
//    __doPostBack(controlID,'');
//}

function OpenPopupPage (pageUrl, isPostBack, exampleNumber)
{
    popUp=window.open(pageUrl+'?isPostBack='+isPostBack+'&exampleNumber='+exampleNumber,'popuppage', 'width=400,height=350,left=200,top=250'); 
}

