function openWindow(url, w, h, scrollbars)
{
	var x = (screen.width - w) / 2;
	var y = (screen.height - h) / 2;
	var props = 'width=' + w + ',height=' + h + ',top=' + y + ',left=' + x + ',scrollbars=' + scrollbars;
	if (url.substring(7,12) == 'forum') {
		props = 'toolbar=1,status=0,location=0,menubar=0,directories=0,' + props;
	} 
	var popup = window.open(url, 'alphacitePopup', props);
	popup.focus();
}

function onImageLoaded ()
{
	var objFlash = document.getElementById('AlphaCite');
	objFlash.SetVariable('imageLoaded', 'ok');
	return 'transmis !!';
}