function submitForm(to_url,exec) {
	$('scr_content').fade('out');
	window.fireEvent("slidein",0,0);
	var params = {
		to_url:to_url,
		target:$('scr_content'),
		form:$('frmScreen')
	};
	//window.fireEvent('slide_in',0,0);
	window.fireEvent('submitMe',params,1000);
}

function submitAnyForm(post_form,to_url,exec) {
	$('scr_content').fade('out');
	var params = {
		to_url:to_url,
		target:$('scr_content'),
		form:post_form
	};
	window.fireEvent('submitMiddle',params,1000);
	return false;
}


function getInside(to_url,exec) {
	$('scr_content').fade('out');
	var params = {
		to_url:to_url,
		target:$('scr_content'),
		form:$('frmScreen')
	};
	window.fireEvent('submitMiddle',params,1000);
}
function submitRight(to_url,exec) {
	$('scr_content').fade('out');
	var params = {
		to_url:to_url,
		target:$('scr_content'),
		form:$('frmScreen')
	};
	window.fireEvent('submitRight',params,1000);
}