
function PopUpWindow(url)
{
	var popWindow = open(url, "popWindow", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=600,height=600,left=0,top=0");
	popWindow.window.focus();
}

function SubmitRUser()
{
	var form = document.getElementById('ruser_form');

	if(!form)
		return;

	var inputs = form.getElementsByTagName('input');
	var postbody = '';

	for(var i = 0; i < inputs.length; i++)
	{
		if(postbody.length > 0)
			postbody += '&' + inputs[i].name + '=' + inputs[i].value;
		else
			postbody += inputs[i].name + '=' + inputs[i].value;
	}

	new Ajax.Request('index.php?block=upsell_ruser', {
		method: 'post',
		postBody: postbody,
		onSuccess: function(transport) {
		},
		onFailure: function() {
		}
	});

	return true;
}

