function clicker(){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		var minwidth=1080
		var minheight=1024
		if (screen.width > minwidth || screen.height > minheight)
		thediv.style.display = "";
		thediv.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'>Notification:<br><br>This webpage is bested viewed with a screen resolution of "+minwidth+" x "+minheight+" or above.<br>We have detected that your resolution is only "+screen.width+" x "+screen.height+". Your viewing experience may be impaired due to this.<br><br><a href='#' onclick='return clicker();'>Click to Continue...</a></td></tr></table>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}
