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;
	props += ',toolbar=no,status=no,location=no,menubar=no,directories=no';
	var popup = window.open(url, 'alphacitePopup', props);
	popup.focus();
}

function onImageLoaded ()
{
	var objFlash = document.getElementById('AlphaCite');
	objFlash.SetVariable('imageLoaded', 'ok');
	return 'transmis !!';
}
