
function PopUp(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function ToggleItem(myItem) {
	if (myItem.style.visibility != 'hidden') {
		HideItem(myItem);
	} else {
		ShowItem(myItem);
	}
	return false;
}
function ShowItem(myItem) {
	myItem.style.visibility = 'visible';
	myItem.style.display = '';
}
function HideItem(myItem) {
	myItem.style.visibility = 'hidden';
	myItem.style.display = 'none';
}


/*--egen för att öppna en annan site--*/
function openNew(url) {
      window.open(url)
}


/*--egen för att öppna en stor bild--*/
function newWindow(theURL,winName,features) {
	bookWindow = window.open(theURL,winName,features)
	bookWindow.focus()
	document.close()
}


/*--egen för att öppna en stor bild
function newWindow(bookjpg) {
	bookWindow = window.open(bookjpg, "bookWin")
	bookWindow.focus()
	document.close()
}
--*/

