var SiteRamowka = {
	init: function(){},

	programOpis: function(r){
		if($("po_"+r).innerHTML == '') {
			$("p_"+r).innerHTML = '';
			advAJAX.get({
				url: '/ramowka/opis/rid/'+r,
				onInitialization: function(obj) {
					$("po_"+r).innerHTML = '';
					with($("po_"+r).style) {
						float = 'left';
						width = '500px';
						height = '50px';
						fontSize = '9pt';
						background = 'transparent url(../images/ajax-loader.gif) no-repeat center';
					}
				},
			    onSuccess : function(obj) { 
					with($("po_"+r).style) {
						background = 'none';
						height = '';
					}
					$("p_"+r).innerHTML = 'schowaj opis';
					$("po_"+r).innerHTML = obj.responseText;
				}
			});
		} else {
			$("po_"+r).innerHTML = '';
			$("p_"+r).innerHTML = 'pokaż opis';
			with($("po_"+r).style) {
				float = 'left';
				margin = '0px';
				width = '500px';
				height = '';
				fontSize = '0px';
				background = 'none';
			}
		}
	},

	podprogramOpis: function(r){
		if($("ppo_"+r).innerHTML == '') {
			$("p_"+r).innerHTML = '';
			advAJAX.get({
				url: '/ramowka/opis/rid/'+r,
				onInitialization: function(obj) {
					$("ppo_"+r).innerHTML = '';
					with($("ppo_"+r).style) {
						float = 'left';
						width = '450px';
						height = '50px';
						fontSize = '9pt';
						background = 'transparent url(../images/ajax-loader.gif) no-repeat center';
					}
				},
			    onSuccess : function(obj) { 
					with($("ppo_"+r).style) {
						background = 'none';
						height = '';
					}
					$("p_"+r).innerHTML = 'schowaj opis';
					$("ppo_"+r).innerHTML = obj.responseText;
				}
			});
		} else {
			$("ppo_"+r).innerHTML = '';	
			$("p_"+r).innerHTML = 'pokaż opis';
			with($("ppo_"+r).style) {
				float = 'left';
				margin = '0px';
				width = '450px';
				height = '';
				fontSize = '0px';
				background = 'none';
			}
		}
	}
};

window.addEvent('load', SiteRamowka.init);
