// JavaScript Document
server='http://www.foto-afl.pl/';
page='';

function getContent(remoteUrl,where,pars)
{
	
preLoader(where);

var url = remoteUrl;

new Ajax.Updater(where, url, {method: 'post', parameters: pars});

}

function sendContact()
{

if (checkForm('contactBottomForm')==true)
{
	pars=$('contactBottomForm').serialize();
		getContent(server+page+'user/sendContact','contactBottomBox',pars);
	}
	
}

function preLoader(place)
{

$(place).innerHTML='<div style="display:block; padding-top:0px;" align="center"><span class="bottom_form_label">TRWA WYSYŁANIE...</span><br/><br/><img src="'+server+'design/images/load.gif" /></div>';	

}

function show_blog()
{
new Effect.Morph('blog', {
  style: 'width:259px;', // CSS Properties
  duration: 0.1 // Core Effect properties
});	
	
}
function hide_blog()
{
new Effect.Morph('blog', {
  style: 'width:49px;', // CSS Properties
  duration: 0.1 // Core Effect properties
});	
	
}


