function fullscreen(){
	self.moveTo(0,0);
	self.resizeTo(screen.availWidth,screen.availHeight);

	var isWin=(navigator.appVersion.indexOf("Win")!=-1)? true : false;
	var isIE=(navigator.appVersion.indexOf("MSIE")!=-1)? true : false;

	if(isWin&&isIE){
		var fullwindow = window.open("main.asp?fullscreen=yes",'KPF',"fullscreen=yes");
		fullwindow.focus();
	}else{
// 	AK: for non-ie browsers, specify width and height instead of using fullscreen 
		var fullwindow = window.open("main.asp?fullscreen=yes","KPF","width="+screen.availWidth+",height="+screen.availHeight);
		fullwindow.moveTo(0,0);
		fullwindow.focus();
	}
	document.location = 'relaunch.htm';
}