// swap is used for onMouse overs and offs
// curent_image is the image 'space' of the image swap
// new_image is the new image to display
function swap(current_image, new_image){
	if(document.images){
		document[current_image].src = eval(new_image + ".src");
	}
}

function win(fileName, resize,width,height) {
	 if( resize != "no" ) resize = "yes"
	 //if( width < 200 ) width=320;
	 //if( height < 200 ) height=300;
	 width=510;
	 height=320;
	 resize=1;
     myFloater = window.open('','myWindow','scrollbars='+resize+',resizable='+resize+',status=no,width='+width+',height='+height)
     myFloater.location.href = fileName;
	 myFloater.focus();
}
