function fullscreenawards() {
	var isWin=(navigator.appVersion.indexOf("Win")!=-1)? true : false;
	var isIE=(navigator.appVersion.indexOf("MSIE")!=-1)? true : false;
	var notIE7 = (navigator.appVersion.indexOf("MSIE 7.0")!=-1)? false : true;

	if(isWin&&isIE&&notIE7){
		var fullwindow = window.open("http://photo.hlehnerer.com/awards/index.html",'Awards',"fullscreen=1, scrollbars=0");
		fullwindow.focus();
	}else{
// 	for non-ie browsers, specify width and height instead of using fullscreen 
		var fullwindow = window.open("http://photo.hlehnerer.com/awards/index.html","Awards","width="+screen.availWidth+",height="+screen.availHeight);
		fullwindow.moveTo(0,0);
		fullwindow.focus();
	}	
}