
function SetBlink() 
{
	if (!document.all) return;
	else 
	{
		for(i=0; i < document.all.tags('blink').length; i++)
		{
			v = document.all.tags('blink')[i];
			v.style.visibility = (v.style.visibility == 'visible') ? 'hidden' : 'visible';
		}
	}
}


var newwindow;
function popup_window(img,the_width,the_height) 
{	
	the_page = 'javascript:document.write("<html><head><style>body{font: normal 100% verdana; padding: 0px; background-image: url(\'img/' + img + '\'); }</style><title></title></head><body></body></html>");';

	newwindow = window.open(the_page,"","status=no,menubar=no,scrollbars=yes,resizable=no,width=" + the_width + ",height=" + the_height);

  return false;
}


if(document.images)
{
	var imgArray = new Array();
	
	for(var x = 5; x > 0; x--)
	{
		imgArray[x - 1] = new Image;		
		imgArray[x - 1] = "img/content/mn/" + x + ".jpg";	
	}
}

var x = 5;
function SlideShow()
{

	if(x < 1)
		x = 5;
	document.mnPic.src = imgArray[x - 1];
	x--;
	setTimeout("SlideShow()", 5000);

		 
}


