/*
hcaec.js
*/
var ajaxMain = 'hcaec.ajax.php';
function popUp(URL,sc,re,wt,ht) {
	var day = new Date();
	var id = day.getTime();
	var myWindow;
	myWindow = window.open(URL, id,'toolbar=0,scrollbars=' + sc + ',location=0,statusbar=0,menubar=0,resizable=' + re + ',width=' + wt + ',height=' + ht + ',left=100,top=100');
	myWindow.opener = self;
}
function fetchContent( contentName ){
	var xx =  ajaxMain + '?c='+ contentName;
	document.getElementById( 'contentMain' ).innerHTML = ajax( xx );
}
function swapImage(imgElementID, toImage){
	document.getElementById(imgElementID).src = 'images/' + toImage;
}

