﻿function OpenPopupPage (pageUrl)
{
    popUp=window.open(pageUrl,'popupcal', 'width=550,height=450,left=200,top=250'); 
}

function CloseWindow()
{
    popUp.close();
    __doPostBack();
}

function CreateFlashControl(divID, classID, objectID, width, height, sourceURL, wmode)
{
  var div = document.getElementById(divID);
  div.innerHTML = 
    '<object classid="' + classID + '" ' +
        'id="' + objectID + '" ' +
        'width="' + width + '" ' +
        'height="' + height + '">' +
    '<param name="movie" value="' + sourceURL + '"/>' +
    '<param name="wmode" value="' + wmode + '"/>' + 
    '<embed src="' + sourceURL + '" ' +
        'wmode="' + wmode + '" ' +
        'width="' + width + '" ' +
        'type="application/x-shockwave-flash" ' +
        'PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"' +
        'height="' + height + '"/>';
}