
function openWindow(url, width, height, menubar, location, toolbar, scrollbars, status, resizable)
{
	newWin = window.open(url, '', 'height=' + height + ',width=' + width + ',menubar=' + menubar + ',location=' + location + ',toolbar=' + toolbar + ',scrollbars=' + scrollbars + ',status=' + status + ',resizable=' + resizable);
	newWin.focus();
}

function openModalDialog(url, windowFeatures) 
{
	window.showModalDialog(url,'',windowFeatures);
}

function OpenCalenderWindow(PathPrefix, Control)
{
	openWindow(PathPrefix + 'Pages/Calender.aspx?Control=' + Control,'200','175','no','no','no','no','no','no');
}

function OpenFullCalenderWindow(PathPrefix, Control) {
    	openWindow(PathPrefix + 'Pages/FullCalender.aspx?Control=' + Control,'200','220','no','no','no','no','no','no');
}
