function popup_for_offers (in_url, in_width, in_height) {

	var new_window = window.open(in_url, "offers", "width="+in_width+",height="+in_height+",left=100,top=100,scrollbars=yes,location=no,menubar=no,status=no,toolbar=no,resizeable=yes");
	new_window.focus();

}
