function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function focusInput(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
		theId.style.color = '#333';
		theId.style.fontStyle = 'normal';
	}
}
function blurInput(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
		theId.style.color = '#999';
		theId.style.fontStyle = 'italic';
	}
}

function printPage() {
	window.print();  
}




/* added by LD 12/01/08 */

function privacyAlert()
{
    alert ("You are now leaving EmblemHealth. Please check the Privacy Statement of the site to which you are going.");
}

