//Globala variabler:
var win;
var winRef
//Slut Globala variabler


function openWindow(url)
{	
	
	if(!win)
	{
		winRef=window.open("http://www." +url, "malex", "width=800px, height=600px, resizable=yes, directories=yes, location=yes, menubar=yes, hotkeys=yes, status=yes, toolbar=yes, alwaysRaised=yes, scrollbars=yes")
		win = true;
	} else
	{
		winRef.close();
		win = false;
		openWindow(url);
	}	
	return;
}
