var mySlider;
var p=0;
var y=0;
var x=0;

function slide() {
	if (p==0) { mySlider = new Fx.Style('upload', 'top', {duration: 500}); p=1; }
	if (y==0) {mySlider.start(-430,85); y=1;}
	else {mySlider.start(85,-430); y=0;}
}

function uploadbox() {
	if(x==0) document.getElementById("upload").style.display = "inline";
	else document.getElementById("upload").style.display = "none";
	if (x==1) x=0; else x=1;
	document.getElementById("upload_status").innerHTML = "";
}

function jsSend()
{
  document.getElementById('status').innerHTML = "Sending...";
}