var cnfg_url = 'http://www.nowa-europa.pl/';

function film() {
noweOkno = window.open('http://www.nowa-europa.pl/film.html','okienko','menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no,width=490,height=400')
}
function film2() {
noweOkno = window.open('http://www.nowa-europa.pl/film_2.html','okienko','menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no,width=490,height=400')
}

// wyswietla PopUp sluzacy do ustalania Atrybutow (Wartosci Atrybutow) dla danego Produktu
function editDoctor(id){

  var popup_width = 800 ;
  var popup_height = 600 ;

  var frame_name = 'Edytuj' ;

  var file_name = 'http://www.nowa-europa.pl/admin/akcja/lekarze_edytuj.php?id=' + id ;
  popup(popup_width, popup_height, frame_name, file_name) ;
}

// generuje PopUp'y
function popup(popup_width, popup_height, frame_name, file_name){
  var margin_left = ((screen.width)/2) - (popup_width/2) ;
  var margin_top  = ((screen.height)/2) - (popup_height/2) ;

  var param = 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no,width='+popup_width+',height='+popup_height+',left='+margin_left+',top='+margin_top ;
  window.open(file_name, frame_name, param).focus() ;

}

function add_to_newsletter(){
	var regs = document.getElementById('nwsl_rules');
    if(regs.checked) var rules=1;else var rules=0;
    advAJAX.post({
	    url: cnfg_url+"newsletter.php",
	    parameters : {
	      "mail" : document.getElementById('mail').value,
          "regs" : rules
	    },
	    onLoading : function(obj){ 
			document.getElementById("newsletter").innerHTML='';
	    },
	    onComplete : function(obj) { 
	    },
	    onSuccess : function(obj) {
			document.getElementById('newsletter').innerHTML = obj.responseText;
            //document.getElementById('mail').value='';
	    },
	    onError : function(obj) {
	   }
	});
}
