function openOnlineRegistrationWindow(lang) {
	url = 'https://www.csm-mcs.com/registration/?language=' + lang;
	window.open(url, 'registerOnline', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=1000,height=700');
}

function showPopUp(url, width, height) {
	if(height == null) height = 600;
	if(width == null) width = 740;
	window.open(url, "PCCarePortalPopup", "status=0,height=" + height + ",width=" + width + ",scrollbars=1,resizable=yes")
}