var agent = navigator.userAgent.toLowerCase();

this.ie  = (agent.indexOf("msie 4") != -1 || agent.indexOf("msie 5") != -1 || agent.indexOf("msie 6") != -1);

function Game(){
	if (this.ie) {
		Window=window.open( "../Archive/Sheep/game.htm", "ISBuC","top=200,left=300, width=347, height=305, resizable=0, toolbar=0, scrollbars=0, status=0");
	} else {
		alert ("A Paraglyph Apology\n\nThis game was written using the Internet Explorer DOM\nSorry, but it won't run on your browser.");	
	}
}
