function printContent(printPageUrl) {
	var pW = openWindow(printPageUrl, 'print', 650, 550, 1, 1, 1);
}


function openPopupContent(url, height, width) {
	var pW = openWindow(url, 'popupContent', height, width, 1, 1, 1);
}


function swapImage(id, id2, siteGuid, imgtype) {
	document.getElementById(id).src = "../WebPackageConfig/" + siteGuid + "/nav_" + id + id2 + "." + imgtype;
	
}

function changeStyle(id, name) {
	document.getElementById(id).className = name;
}

function closeWindow(newOpenerUrl){
	window.opener.location.href = newOpenerUrl;
	window.opener.focus();
	window.close();
}