/*	
	Generic javascript for popup-windows
	--------------------------------------------
	The last argument controls if the window should be resizeable or not
	<a href="" onclick="axisPopUp('http://www.axis.com/','hej',500,200,false); return false;">test</a>
	
	Created by Jonas Elmqvist in 2004-12-02
*/

function axisPopUp(url,windowname,width,height,resize) {
	
	if (resize) {
		window.open(url,windowname,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + width + ',height=' + height);
	} else {
		window.open(url,windowname,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + width + ',height=' + height);
	}
	
	return false;
}
