<!-- script to generate MS profile numbers and displayed corresponding images
var randomNum;
randomNum = (Math.round((Math.random()*2)+1));

var imageNum;
	if (randomNum=="1") imageNum="36";
	if (randomNum=="2") imageNum="37";
	if (randomNum=="3") imageNum="38";

if (document.images) { 
	ProfileOver = new Image();
	ProfileOver.src = "http://www.scleroseenplaques.ca/imagesProfile/PR_" + imageNum + "BF.gif";
	
	ProfileOut = new Image();
	ProfileOut.src = "http://www.scleroseenplaques.ca/imagesProfile/PR_" + imageNum + "AF.gif"; 
}

function imageOver(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "Over.src"); 
	}
}

function imageOut(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "Out.src");
	}
}	
	
function openProfile(URL) {
	remote = window.open("http://www.scleroseenplaques.ca/fr/" + URL, "MSprofile", "width=800, height=500, resizable=0, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1"); 
}

