function learn_more(attribute,option_id)
{
	var url_string = "/includes/ajax_learn_more.php?ms="+new Date().getTime() +"&action=get_help&attribute="+attribute+"&option_id="+option_id;
	helpwindow= window.open (url_string, "helpwindow", "location=no,status=no,scrollbars=yes,titlebar=no,location=no,menubar=no,toolbar=no,resizable=yes,width=500,height=300");
	helpwindow.moveTo(200,200);
  helpwindow.focus();
}


 function learn_more_option(option_id)

{

	var url_string = "/includes/ajax_learn_more.php?ms="+new Date().getTime() +"&action=get_help&attribute=options&option_id="+option_id;

	helpwindow= window.open (url_string, "helpwindow", "location=no,status=no,scrollbars=yes,titlebar=no,location=no,menubar=no,toolbar=no,resizable=yes,width=500,height=300");

	helpwindow.moveTo(200,200);
	 helpwindow.focus();


}