function openpopup( popupName ) {
	
	var popup = null;
	var width=510;
	var height=540;		
	var theURL='';
	var winName='';
	var topY=(screen.height-height)/2;
	var leftX=(screen.width-width)/2;		
	var features='innerWidth=' + width+',innerHeight='+height+',width=' + width+',height='+height+',top='+topY+',left='+leftX+',resizable=0,scrollbars=0,toolbar=no,status=no,location=no';
						
	if(popupName == 'regulamin serwisu') {
		theURL='popups/regulamin_korzystania_z_serwisu.html';
		winName='regulamin konkursu';
	} else if(popupName == 'polityka_prywatnosci' ) {
		theURL='popups/polityka.html';
		winName='polityka_prywatnosci';
	} else if(popupName == 'regulamin konkursu' ) {
		theURL='popups/regulamin.html';
		winName='nota_prawna';
	} else if( popupName ==' regulamin_konkursu' ) {
		theURL='popups/regulamin_konkursu.html';
		winName='regulamin_konkursu';
	} else if( popupName == 'lista zwyciezcow' ) {
		theURL='popups/lista_zwyciezcow.html';
		winName='lista_zwyciezcow';
	} 
	
	/* else if( popupName =='regulamin_uslug' ) {
		theURL='html/popups/regulamin_uslug.html';
		winName='regulamin_uslug';
	} else if( popupName =='regulamin_tajemniczy_klient' ) {
		theURL='html/popups/regulamin_tajemniczy_klient.html';
		winName='regulamin_tajemniczy_klient';
	}
	
	else if( popupName =='picture' ) {
		theURL='html/popups/picture.html?file=' + arguments[1];
		winName='picture';
		width=200;
		height=100;
		topY=(screen.height-height)/2;
		leftX=(screen.width-width)/2;				
		features='innerWidth=' + width+',innerHeight='+height+',width=' + width+',height='+height+',top='+topY+',left='+leftX+',resizable=0,scrollbars=0,toolbar=no,status=no,location=no';			
	}
	*/
	if( !winName || !theURL ) {
		alert( 'Not defined: ' + popupName );
		return;
	}	
	
	popup = window.open(theURL,winName,features);	

	if ( popup && !popup.closed ) {
		popup.focus();
	}
}
