function clicker(wind){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
		var myWins=new Array();
		myWins[1]="<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><iframe src=\"/live/index.html\" width=\"650\" height=\"545\"  frameborder=\"0\"  id=\"iframewdl\">Your browser does not support inline frames or is currently configured not to display inline frames.</iframe><br><br><a href='#' onclick='return clicker();'><h1>CLOSE WINDOW</h1></a></td></tr></table>";
		myWins[2]="<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><iframe src=\"map.php\" width=\"590\" height=\"590\"  frameborder=\"15\" >Your browser does not support inline frames or is currently configured not to display inline frames.</iframe><br><br><a href='#' onclick='return clicker();'><h1>CLOSE WINDOW</h1></a></td></tr></table>";
        myWins[3]="<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><iframe style=\"background-color: #ffffff\" marginwidth=\"15px\" marginheight=\"15px\" src=\"DWCisLocal1.php\" width=\"650\" height=\"600\" frameborder=\"0\" >Your browser does not support inline frames or is currently configured not to display inline frames.</iframe><br><br><a href='#' onclick='return clicker();'><h1>CLOSE WINDOW</h1></a></td></tr></table>";
		thediv.innerHTML = myWins[wind];
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}

