function select_product(inputID,productID){
	opener.document.getElementById(inputID).value=productID;
	//opener.document.getElementById(inputID).onchange(); //this causes problems
	this.close();
}

function browse_products(id,base_url) {
	popup(850,500,base_url+'browse_products.php?browse_products_input='+id);
}

function popup(width,height,url) {
	window.open(url,"pop","width="+width+",height="+height+",location=yes,menubar=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,resizable=yes");
}