

function newwindow1() {
		newWindow = open("freshworks1.html","New_Window","width=500,height=210,top=100,left=100"); onBlur="self.close()";
	}
function newwindow2() {
		newWindow = open("freshworks2.html","New_Window","width=500,height=210,top=100,left=100"); onBlur="self.close()";
	}
	//-->
<!--
function move(img_name,img_src){
	document[img_name].src=img_src;
}

function move_in(img_num,img_name){
  if (document.images) {
    document.images[img_num].src=img_name;
  }
}

function move_out(img_num,img_name){
  if (document.images) {
    document.images[img_num].src=img_name;
  }
}

if (document.images) {
        newfirst= new Image
        newsecond= new Image
	newthird= new Image
	newforth= new Image
	newfifth= new Image
	newsixth= new Image
	
        newfirst.src= 'images/home_a.jpg'
        newsecond.src= 'images/newsletter_a.jpg'
        newthird.src= 'images/area_shows_a.jpg'
	newforth.src= 'images/membership_a.jpg'
	newfifth.src= 'images/entries_a.jpg'
	newsixth.src= 'images/links_a.jpg'	
 } 
else {
  alert("Your browser does not support full JavaScript functionality for this page.  You may wish to upgrade your browser to experience everything we have to offer!")
}       

function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
