/* map popups */

function csPop(divId)
{
	document.getElementById(divId).style.display = "block";
}

function csPop_cls(divId)
{
	document.getElementById(divId).style.display = "none";
}

function openDialog(type) {
	
	var url="http://www.microsoft.com/Canada/technet/eit2009/VideoPopup.aspx" + "?Type=" + type ;
	
	var result = window.showModalDialog(url, "", "dialogWidth:500px; dialogHeight:375px; center:yes");
}

