function kolorowanie() {
	var width = 980; var height = 700;
	if(width > screen.width) width = screen.width - 20;
	if(height > screen.height) height = screen.height - 40;
	
	var left = parseInt(screen.width / 2 - width / 2);
	var top = parseInt(screen.height / 2 - height / 2);
	
	window.open('http://www.kreisel.pl/kolorowanie/','newWin','width='+width+',height='+height+',left='+left+',top='+top+', toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No');
}

if(String(window.location).match(/action\=kolorowanie/)) kolorowanie();
