
window.status = "Aeroflot bonus" ;

if ( window.name == "" )
{
	window.name = "AeroflotBonus" ;
}

function rollImage(img)
{
	var sExt = "_off.gif";
	var sExt2Replace = "_on.gif";

	if (img.src.indexOf("_on.gif") > 0 )
	{
		sExt = "_on.gif";
		sExt2Replace = "_off.gif";
	}

	img.src = img.src.replace(sExt, sExt2Replace) ;
}
