function select(el, val) {
	for(var i=0; i<$(el).getElementsByTagName('option').length; i++) {
		if($(el).getElementsByTagName('option')[i].value == val)
			$(el).selectedIndex = i;
	}
}


function loadingStart() {
	var div_content = '<h2 id="loding_text">Loading ...</h2><div id="loading_div"><iframe src="#"></iframe></div>';
	new Insertion.Before($('wrapper'), div_content);
}

function loadingStop() {
	$('loding_text').remove();
	$('loading_div').remove();
}

var scripttag = document.getElementsByTagName('script')[0];
wwwbase = scripttag.src.match(/(.*)\/js.*/)[1]+'/';
