function NewWindow(name,url,width,height,str){
	this.name	= name;
	this.url	= url;
	this.width	= width;
	this.height	= height;
	this.str	= str;
	this.string = this.str+",width="+this.width+",height="+this.height
	
	this.openit	= openit;
}

var opsun = "top=25,left=520,scrollbars=yes,resizable=yes,status=yes";
var maps = "top=25,left=20,scrollbars=yes,resizable=yes,status=no";
var first	= new NewWindow('winda','http://www.destin-fwb.com/admin/calendar.cfm?v=1',240,245,opsun);
var second	= new NewWindow('windz','http://www.destin-fwb.com/admin/calendar.cfm?v=2',240,245,opsun);
var third	= new NewWindow('windz','http://www.destin-fwb.com/XMLMap/testmap.cfm',860,430,maps);

function openit(dates,formn){
	var urlString = "";
	if(dates) urlString = "&date=" + dates;
	if(formn) urlString = urlString + "&formn="+formn;
	var popup = window.open(this.url+ urlString,this.name,this.string);
	eval(popup);
}