function get_object(the_rules_or_not)
{
	if(document.all)
	{
		return document.all[the_rules_or_not];
	}
	else if(document.getElementById)
	{
		return document.getElementById(the_rules_or_not);
	}
}
function read_more()
{
	the_rules_or_not=get_object('order_rules');
	the_rules_or_not.style.display="block";

	the_rules_or_not=get_object('order_form');
	the_rules_or_not.style.display="none";
}
function read_less()
{
	the_rules_or_not=get_object('order_rules');
	the_rules_or_not.style.display="none";
	
	the_rules_or_not=get_object('order_form');
	the_rules_or_not.style.display="block";
}

function waitforresponce()
{
	//document.getElementById("gonext_button").disabled=true;
	document.getElementById("button_div").style.display='none';
	document.getElementById("no_klick_div").style.display='block';
}

function highlight(field)
{
	field.focus();
	field.select();
}
