// JavaScript Document  badPop.js - molycor.com - May 26, 2008
<!--

function badPop(chc,wid,hgt,ctl) {
 var as,i,popfun,file,width,height,control
choice=chc;
width=wid;
height=hgt;
control=ctl;

$file = choice;
	var $file_array = new Array;
	$file_array[0] = "maps-crowrea.html";
	$file_array[1] = "maps-dobbin1.html";
	$file_array[2] = "maps-dobbin2.html";
	$file_array[3] = "maps-flap.html";
	$file_array[4] = "maps-windpass.html";
	$file_array[5] = "maps-beaverdell.html";
	theFile = $file_array[$file]; 

	popfun=function(){ 
// create positioning to centre popMain on viewer's screen:
		if(screen.width<width) {
			lpos = 0;
		}
		else {
			lpos = (screen.width) ? (screen.width-width)/2 : 10;
		}
	if (ctl == 0) {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=no,scrollbars=no,resizable=no';
	}
	else if (ctl == 1) {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=yes,scrollbars=yes,resizable=no';
	}
	else if (ctl == 2) {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=yes,scrollbars=no,resizable=yes';
	}
	else {
		var windowAttributes='width=' +width+ ',height=' +height+ ',left=' +lpos+ ',top=20,toolbar=no,scrollbars=yes,resizable=no';
	}
		var oWin = window.open(theFile,'',windowAttributes); 
		if (oWin==null || typeof(oWin)=="undefined"){
	   	alert("Please disable your POPUP Blocker Software, and then re-select the LINK button.");
		}
       return false; 
     }; 
	 popfun();
} 
-->
