function redir2() {
	alert(url);
	document.location.href = url;
}

function redir(delay) {
	setTimeout('redir2()', delay);
}

function showsearch() {
	var url = 'index.php?popup=vendsearch';
	wsearch = window.open(url, "showsearch", "width=650,height=340,resizable=no,scrollbars=no,toolbar=no,menubar=no,status=no");
	wsearch.focus();
}

function showexp(exp_id) {
	var url = 'index.php?popup=showexp&exp_id='+exp_id;
	wshowexp = window.open(url, "showexp", "width=480,height=555,resizable=no,scrollbars=no,toolbar=no,menubar=no,status=no");
	wshowexp.focus();
}

function showevent(event_id) {
	var url = 'index.php?popup=showevent&event_date_id='+event_id;
	wshowevent = window.open(url, "showevent", "width=480,height=340,resizable=no,scrollbars=no,toolbar=no,menubar=no,status=no");
	wshowevent.focus();
}

function showvend(vend_id) {
	var url = 'index.php?popup=showvend&vend_id='+vend_id;
	wshowvend = window.open(url, "showvend", "width=480,height=450,resizable=no,scrollbars=no,toolbar=no,menubar=no,status=no");
	wshowvend.focus();
}

function pick(vend_raw_infos) {
	vend_array_infos = vend_raw_infos.split('|');
	vend_id = vend_array_infos[0];
	vend_infos = vend_array_infos[1];
	if (window.opener && !window.opener.closed) {
		window.opener.document.frm_vend.vend_name.value=vend_infos;
		window.opener.document.frm_vend.vend_id.value=vend_id;
	}
	window.close();
}

