
/* Common Javascript -- EQAO e-Magazine 2007  */

function doPopUp(winName,width,height,lang) {
			if (winName=='rationale') {
			var thisWindow = window.open('/eMagazine/2007/03/scoreRationale_' + lang + '.htm', winName, 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=' + width + ', height=' + height + ', left = 490, top = 312');
			}
			if (winName=='guidelines') {
			var thisWindow = window.open('/eMagazine/2007/03/writerGuidelines_' + lang + '.htm', winName, 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=' + width + ', height=' + height + ', left = 10, top = 10');
			}
}

function showHide(objectRef, replacementRef, replacementTextOn, replacementTextOff, fontWeightValue) {
		var theObj = document.getElementById(objectRef);
		var theReplacedObj = document.getElementById(replacementRef);
		var theReplacementText = ( theObj.style.display == 'block' ) ? replacementTextOn : replacementTextOff;
		var cssDisplay = ( theObj.style.display == 'block' ) ? 'none' : 'block';
		theObj.style.display = cssDisplay;
		theReplacedObj.innerHTML = theReplacementText;
		theReplacedObj.style.fontWeight = fontWeightValue;
}
