var d = document;

function cms_on_load()
{
    // default onload() call
}

function classChange(element, cName)
{
	element.className = cName;
}

function confirm_logout( msg, url ) {
    response = confirm(msg);
	if (response == true) {
		window.location = url;
	}
	return false;
}
