<!--   Script by Olivier Ausems - olivier@verdoyer.fr

var IE4 = (document.all)? true : false;
var IE55 = window.createPopup;
var NS4 = (document.layers)? true : false;
var NS6 = (document.getElementById && !document.all)? true: false;
var NS = NS4 || NS6;
var imgPath = "../images/";

function changeImg(img, imgName){
	if(IE4||NS)
	{
		img.src = imgPath + imgName;
	}
}

var win = null;
function OpenPopup(page,w,h){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable'
	win = window.open(page,"Awesome",settings)
	if(win.window.focus){win.window.focus();}
}
// End of JavaScript -->