// JavaScript Document
function popupOpen(koja, w, h){
	koja = koja.href;
	var winl, wint, settings, win;
	winl = (screen.width-w)/2;
	wint = (screen.height-h)/2;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl;
	settings = settings + ',scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=yes';
	win = window.open(koja, 'Seasons', settings);
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	return false;
}