
	function submitPrice( id, choosedHRElementId ){
		var prefix = (window.price_submit_host ? window.price_submit_host + "" : "") + 
			(window.price_submit_context ? window.price_submit_context + "" : "/book") + 
			"/actions/rFiller.sdo?template="+site_lv+"&action=createFromSD&page=traditionalRes-lv" + 
			"&view=preview&urId=0&spoContainerDateId=" + id;
		var url = prefix;
		if ( choosedHRElementId.length > 0 && choosedHRElementId != '0' ){
			var select = document.getElementById( choosedHRElementId );
			var opts = select.options;
			var chr = select.selectedIndex >= 0 ? opts[ select.selectedIndex ].value : 0;
			url += "&choosedHotelResource=" + chr;
		}
		if ( window.price_submit_template ) {
			url += "&template=" + window.price_submit_template;
		}
		self.location = url;
		return false;
	}
