var alternate_def = 100

var temp
var norm1_msg =
"                                                                  "
var norm1_msg = norm1_msg + ("Nowe Linki 24/06/07")
var speed = 100
var control=0

var alternate = alternate_def

var bestwidth=1024
var bestheight=768
var step=0
var stop=0

function statusmsg1()
{
	if (control==0)
	{
	    temp = norm1_msg.substring(0,1);
	    norm1_msg += temp
	    norm1_msg = norm1_msg.substring(1,100);

	    if (stop<300) alternate--;
	    else alternate=alternate_def;

	    if (alternate>alternate_def/2)
                 window.status = norm1_msg.substring(0,100);
	    else
	    {
                 stop++;
                 if (screen.width<bestwidth || screen.height<bestheight)
                 {
                    if (step==0) window.status = "This webpage is best viewed with Screen Resolution of " +bestwidth+ "*" +bestheight+ " or Higher";
	            if (step==1) window.status = "This PC has Screen Resolution of "+screen.width+"*"+screen.height;

                    if (alternate==0)
	            {
                	alternate=alternate_def;
                        step++;
	        	if (step>1) step=0;
		    }
	 	}
	        else
                       alternate=alternate_def;
            }
	}
	setTimeout("statusmsg1()",speed);
}
