﻿function openPopup(title, path, target, height, width) 
{ 		
	var oWnd = radopen(path, target);
	oWnd.setSize(width, height);
	oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close)
	oWnd.set_title(title);
	oWnd.set_visibleStatusbar(false);
	oWnd.set_modal(true);
	oWnd.center();
}

function closePopup()
{
	var oWnd = null;
	if(window.radWindow) 
		oWnd = window.radWindow;
	else if (window.frameElement.radWindow) 
		oWnd = window.frameElement.radWindow;

	if(oWnd != null)
		oWnd.Close();
}
