///Open Windows
function open_window(url,width,height,scroll)
	{
		mywin = window.open(url,"map",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scroll+',resizable=0,left=80,width=' +width+ ',height=' +height+ ',top=50')
	}
///Resize window popups
function myResize(){
	var myScrollbar = 30;
	var myTextArea = 80;
	var myMaxHeight = 600;
	var myMaxWidth = 800;
	
	//size of loaded image
	var myImageheight = document.getElementById("feature").height;
	var myImageWidth = document.getElementById("feature").width;
	
	//if image is too wide, cap it
	myImageheight = (myImageheight>myMaxHeight)? myMaxHeight : myImageheight+myTextArea;
	myImageWidth = (myImageWidth>myMaxWidth)? myMaxWidth : myImageWidth+myScrollbar;
	
	//resize the window
	window.resizeTo(myImageWidth,myImageheight)
}	