var popUpWindow;

function showItem (myId, season) {
	
	if (popUpWindow) popUpWindow.close ();
	
	popUpWindow = window.open ("item.php?id=" + myId + "&season=" + season, "myPopUp", "noresize, width=620, height=330");
	
	popUpWindow.focus ();
	
}
