| Related sites for http://www.blr.com/ |
| Employee_Assistance_Program_Providers_Directory Nationwide directory of Employee Assistance Program providers and consultants in the United States. | | Employee_Assistance_Programs Information for managers and employees. We are specialists in partnering with organizational clients to manage their human assets. | | Employment_Law_Publications_at_Thompson__com Offers publications and resources related to employment law issues. | | Federal_Minimum_Wage Find information on US federal labor law. | | Federal_Wage_and_Labor_Law_Institute Labor law posters. | | Gene_Levine_Associates US based management advisors, providing reference material on a variety of HR issues. | | Henrico_County,_Virginia\'s_Personnel_Rules_and_Regulations This an example of a, County Personnel Rule Book. | | HR_Hub Resource for human resources managers, recruiters, benefits administrators, consultants, and others involved in staffing, training, or organizational development. | | HR_Management A personal insight into HR from a Masters student. Site includes a large number of links to on-line resources. | | The_HR_Manager Features information performance management, staffing, legal issues, record keeping, compensation and benefits. | | HRBrief Articles and resources of interest to the human resources professional. | | HR_com Covers employee compensation, HR management, and organizational development. | | HRdirect HRdirect offers personnel products to help you screen, train, motivate employees, comply with state and federal labor laws. | | HrGOpher Large collection of human resource links. | | HR-Guide_com Directory of sites for human resources professionals and students. | | HR-Info Australian resource center providing human resources articles, books, surveys and trial software. | | HRVillage Intnernet portal providing information on, and links to, a range of subjects including, employee benefits, compensation, staffing, recruitment and training. | | Human_Links Provides information on a wide range of Human Resource topics with particular emphasis on the Indian market. | | Human_Resources News, articles and information for HR professionals. Includes forum and newsletter. | | Human_Resources_at_Inc_com Provides online advice and tools for dealing with employee evaluation and management, benefits and compensation, employment regulation and policy as well as personnel administration. | | I-9_Handbook_For_Employers FAQ for employers on completing an I-9 form. [PDF] | | Institute_for_Employment_Studies An independent, apolitical, international center of research and consultancy in human resource issues. Information on their services and publications. | | Interactive_Employment_Training,_Inc_ Online training about discriminatory harassment prevention, includes information on maximizing affirmative defenses to sexual harassment claims. | | interbiznet_Electronic_Recruiting_Index Annual Reference Book on the history and future of the Recruiting Industry for Human Resource Professional. | | JDG_Associates,_Inc_ Specialists in socio-economic development, diversity, inclusion and community development programs, committed to helping our clients redefine Affirmative Action and EEO with cost-effective solutions. | | Job_Descriptions_Help_Page Provides examples of job descriptions for those implementing an ISO 9000 or Total Quality Management (TQM) Quality Systems. | | JobGenie Company marketing a dictionary of occupational titles on disk. | | Kollman_&_Saucier,_P_A_ Resources for United States human resources management issues. | | Literary_Technologies,_Inc_ Offers a guide to developing an employee manual. | | Mike_Smith\'s_HR_Page Practical examples of tools for managers including structured interviews and performance reviews, advice, articles and an opportunity to ask HR questions. | | Moving_Workers_from_Canada_to_the_U_S_ With NAFTA, transferring employees from Canada to the U.S. requires Ray Harman's three massive checklists. Ray was Director of Human Resources for a Fortune 500 company. | | National_Association_of_State_Retirement_Administrators News on legislative issues affecting state retirement systems. | | OccupationalInfo_org Dictionary of occupational titles. | | Performance_Appraisal_Tips General information on performance appraisals and tips for supervisors and managers. | | Performance_Management_&_Appraisal_Help_Center Information on performance appraisals, including an online forum and articles relevant to employee reviews. | | Personnel_Policy_Service_Publishers Provide a US wide advice service on human resource policy. | | Quinlan_Publishing_Company Provides information on workers' compensation and other HR publications. | | Ransom_and_Benjamin_Publishers Publisher offering various publications on and links to a variety of human resource topics. | | Risk_Management_Internet_Services_-_Human_Resources Subscription service, offering resources for paid subscribers, including information about labor agencies and laws, risk management, insurance, staffing, program and policy templates and employee bene | | Sullivan\'s_Employment_Law_Arbitration_and_Consulting Instructing employers and employees on employment, wage, and hour law and regulation. |
|
Business & Legal Reports, Inc - Human resources, compensation, environmental, and safety compliance and training
function validRequired(formField,fieldLabel)
{
var result = true;
if (formField.value == "")
{
alert('Please enter a value for the "' + fieldLabel +'" field.');
formField.focus();
result = false;
}
return result;
}
function allDigits(str)
{
return inValidCharSet(str,"0123456789");
}
function inValidCharSet(str,charset)
{
var result = true;
for (var i=0;i year) || ((nowYear == year ) && (nowMonth > month));
result = allDigits(elems[0]) && (month > 0) && (month < 13) &&
allDigits(elems[1]) && ((elems[1].length == 2) || (elems[1].length == 4));
}
if (!result)
{
alert('Please enter a date in the format MM/YY for the "' + fieldLabel +'" field.');
formField.focus();
}
else if (expired)
{
result = false;
alert('The date for "' + fieldLabel +'" has expired.');
formField.focus();
}
}
return result;
}
function isValidCreditCardNumber1(formField,ccType,fieldLabel,required)
{
//alert("isValidCreditCardNumber called");
var result = true;
var ccNum = formField;
if (required && !validRequired(formField,fieldLabel))
result = false;
if (result && (formField.length>0))
{
if (!allDigits(ccNum))
{
alert('Please enter only numbers (no dashes or spaces) for the "' + fieldLabel +'" field.');
result = false;
}
if (result)
{
if (!LuhnCheck(ccNum) || !validateCCNum(ccType,ccNum))
{
alert('Please enter a valid card number for the "' + fieldLabel +'" field.');
result = false;
}
}
}
return result;
}
function LuhnCheck(str)
{
var result = true;
var sum = 0;
var mul = 1;
var strLen = str.length;
for (i = 0; i < strLen; i++)
{
var digit = str.substring(strLen-i-1,strLen-i);
var tproduct = parseInt(digit ,10)*mul;
if (tproduct >= 10)
sum += (tproduct % 10) + 1;
else
sum += tproduct;
if (mul == 1)
mul++;
else
mul--;
}
if ((sum % 10) != 0)
result = false;
return result;
}
function GetRadioValue(rArray)
{
for (var i=0;i=0);
break;
case "MASTERCARD":
var validNums = "12345";
result = (cardLen == 16) && (firstdig == "5") && (validNums.indexOf(seconddig)>=0);
break;
case "DISCOVER":
result = (cardLen == 16) && (first4digs == "6011");
break;
case "DINERS":
var validNums = "068";
result = (cardLen == 14) && (firstdig == "3") && (validNums.indexOf(seconddig)>=0);
break;
}
return result;
}
//function validCCForm(ccTypeField,ccNumField,ccExpField)
//{
// var result = isValidCreditCardNumber(ccNumField,ccTypeField.value,"Credit Card Number",true) &&
// isValidExpDate(ccExpField,"Expiration Date",true);
// return result;
//}
function validCCForm1(ccNumField,ccExpField)
{
whatType(ccNumField + "");
var ccTypeField = cardType; // return from whatType is cardType var
var result = isValidCreditCardNumber1(ccNumField,ccTypeField,"Credit Card Number",true) &&
isValidExpDate(ccExpField,"Expiration Date",true);
return result;
}
function callwhatType(cardNum)
{
whatType(cardNum);
alert (cardType);
}
function whatType(xcardNum)
{
cardType = "OTHER";
var cardLen = xcardNum.length;
var firstdig = xcardNum.substring(0,1);
var seconddig = xcardNum.substring(1,2);
var firsttwodig = xcardNum.substring(0,2);
var first4digs = xcardNum.substring(0,4);
if (firsttwodig == "51" || firsttwodig=="52" || firsttwodig=="53" || firsttwodig=="54" || firsttwodig=="55")
{
cardType = "MASTERCARD";
}
if (firstdig == "4" )
{
cardType = "VISA";
}
if (firsttwodig == "34" || firsttwodig=="37" )
{
cardType = "AMEX";
}
if (first4digs == "6011" )
{
cardType = "DISCOVER";
}
//alert("card type is: " + cardType);
return cardType;
// call this function, get back a cardType variable
}
BLR Home | HR.BLR.com | Compensation.BLR.com | Safety.BLR.com | Enviro.BLR.com
Catalog Fast Order | My Account | Contact Us | Shopping Cart | Check Out | Login
By Topic
By Format
Spanish

HR.BLR.com
Benefits
Compliance
Policy & Practice
Training
Best Practices
Time Savers
Full Topic List
Comp.BLR.com
Best Practices
Salaries
Compliance
Full Topic List
Safety.BLR.com
Compliance
Training
Best Practices
Full Topic List
Enviro.BLR.com
Compliance
Training
Best Practices
Full Topic List
1-800-727-5257
Contact Us
FAQ's
Site Map
VIP Tours
Request a Catalog
blr-hpimg-v8AC_FL_RunContent = 0; if (AC_FL_RunContent == 0) { alert("This page requires AC_RunActiveContent.js."); } else { AC_FL_RunContent( 'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0', 'width', '402', 'height', '336', 'src', 'blr-hpimg-v8', 'quality', 'high', 'pluginspage', 'http://www.macromedia.com/go/getflashplayer', 'align', 'middle', 'play', 'true', 'loop', 'true', 'scale', 'showall', 'wmode', 'opaque', 'devicefont', 'false', 'id', 'blr-hpimg-v8', 'bgcolor', '#ffffff', 'name', 'blr-hpimg-v8', 'menu', 'true', 'allowFullScreen', 'false', 'allowScriptAccess','sameDomain', 'movie', 'blr-hpimg-v8', 'salign', '' ); //end AC code }
It's Time to be Ready for New ADA Changes!

Signed 9/25/08 - are you ready for ADA changes?Effective January 1, 2009, the Americans with Disabilities Amendments Act of 2008 (ADAAA) takes effect. The amendment makes sweeping changes to the Americans with Disabilities Act (ADA), and the change that will have the biggest impact on employers is the much broader definition of who qualifies as disabled.
Download this comprehensive report today!
Updated: Social Security 2009
New for 2009! Help your employees understand the latest changes to social security. BLR's completely revised, illustrated employee booklet explains benefits, reassure employees, and reduces the time you spend answering individual questions. Includes easy-to use help charts and more.
View product details

New FMLA Regs Audio Conference - October 14
Join us on October 14 for an in-depth 90-minute audio conference all about your current and proposed future obligations under the FMLA.
Join us on October 14
Readers See ‘Mr. Foster’ Column as Inspiring, Troublesome, SymptomaticOctober 10, 2008
Retail Giant Accused of BiasOctober 09, 2008 -- The U.S. Equal Employment Opportunity Commission (EEOC) has filed a lawsuit against Dillard Store Services, Inc., accusing the department store chain of violating federal law by requiring employees to disclose personal and confidential medical information or face disciplinary action, including termination.
Avoiding Triple Damages for Labor Law ViolationsOctober 09, 2008 -- Massachusetts employers now face more significant risks for violations of the state's wage payment laws, thanks to Chapter 80 of the Laws of 2008. That new law imposes mandatory triple damages on any employer that violates any one of a number of the state's employment laws--even mistakes made in good faith. Attorney Christina Lewis, of Boston law firm HinckleyAllenSnyder, recently told members of NEHRA how to avoid liability under the new rules.
Safety Board Calls for Action to Help Prevent Fatigue AccidentsOctober 10, 2008 -- The National Transportation Safety Board (NTSB) determined that human fatigue was the probable cause of a truck-tractor rollover accident that resulted in a subsequent collision with a motor coach that killed 5 and injured 35.
OSHA Issues Proposal for Cranes and DerricksOctober 09, 2008 -- OSHA has published a proposed rule in the Federal Register on October 9, 2008, for cranes and derricks in construction that would apply to some 96,000 construction cranes in the United States, including 2,000 tower cranes.
HR Daily AdvisorDaily newsletter of quick HR tips, news, and practical advice
Compensation EzineCompensation news & best practices
Safety Daily Advisor - Daily newsletter of quick safety tips, news, and practical advice
Environmental EzineExpert advice on EPA & state regs
We respect your privacy
10/14/08 - Safety Management Audio Conference - October 14
10/14/08 - New FMLA Regs Audio Conference - October 14
10/16/08 - Wellness Audio Conference - October 16
10/20/08 - Payroll Documentation Audio Conference - October 20
• Bloodborne Pathogens (BBP)
• personal cell phone usage and texting
BLR Home | Human Resources | Compensation | Safety | Environmental
HR.BLR.com | Compensation.BLR.com | Safety.BLR.com | Enviro.BLR.com
Catalog Fast Order | My Account | Shopping Cart | Check Out | Site Map | Privacy StatementAbout BLR | Corporate News | Careers | Press Room | Divisions & Affiliates | Contact Us
var _hbEC=0,_hbE=new Array;function _hbEvent(a,b){b=_hbE[_hbEC++]=new Object();b._N=a;b._C=0;return b;}
var hbx=_hbEvent("pv");hbx.vpc="HBX0200u";hbx.gn="sts.blr.com";
//BEGIN EDITABLE SECTION
//CONFIGURATION VARIABLES
hbx.acct="DM570824F7WC96EN3;DM57082498FD96EN3";//ACCOUNT NUMBER(S)
//hbx.pn="PUT+PAGE+NAME+HERE";//PAGE NAME(S)
hbx.pn="index.cfm";//PAGE NAME(S)
//hbx.mlc="CONTENT+CATEGORY";//MULTI-LEVEL CONTENT CATEGORY
hbx.mlc="www.blr.com/";//MULTI-LEVEL CONTENT CATEGORY
hbx.pndef="index.aspx";//DEFAULT PAGE NAME
hbx.ctdef="full";//DEFAULT CONTENT CATEGORY
//OPTIONAL PAGE VARIABLES
//ACTION SETTINGS
hbx.fv="";//FORM VALIDATION MINIMUM ELEMENTS OR SUBMIT FUNCTION NAME
hbx.lt="auto";//LINK TRACKING
hbx.dlf="n";//DOWNLOAD FILTER
hbx.dft="n";//DOWNLOAD FILE NAMING
hbx.elf="n";//EXIT LINK FILTER
//SEGMENTS AND FUNNELS
hbx.seg="3,-4,-5,-6,-7,-8";//VISITOR SEGMENTATION
hbx.fnl="";//FUNNELS
//CAMPAIGNS
hbx.cmp="";//CAMPAIGN ID
hbx.cmpn="";//CAMPAIGN ID IN QUERY
hbx.dcmp="";//DYNAMIC CAMPAIGN ID
hbx.dcmpn="";//DYNAMIC CAMPAIGN ID IN QUERY
hbx.dcmpe="";//DYNAMIC CAMPAIGN EXPIRATION
hbx.dcmpre="";//DYNAMIC CAMPAIGN RESPONSE EXPIRATION
hbx.hra="";//RESPONSE ATTRIBUTE
hbx.hqsr="";//RESPONSE ATTRIBUTE IN REFERRAL QUERY
hbx.hqsp="";//RESPONSE ATTRIBUTE IN QUERY
hbx.hlt="";//LEAD TRACKING
hbx.hla="";//LEAD ATTRIBUTE
hbx.gp="";//CAMPAIGN GOAL
hbx.gpn="";//CAMPAIGN GOAL IN QUERY
hbx.hcn="";//CONVERSION ATTRIBUTE
hbx.hcv="";//CONVERSION VALUE
hbx.cp="null";//LEGACY CAMPAIGN
hbx.cpd="";//CAMPAIGN DOMAIN
//CUSTOM VARIABLES
hbx.ci="";//CUSTOMER ID
hbx.hc1="WBZ|172";//CUSTOM 1
hbx.hc2="WAAA|NULL";//CUSTOM 2
hbx.hc3="";//CUSTOM 3
hbx.hc4="";//CUSTOM 4
hbx.hrf="";//CUSTOM REFERRER
hbx.pec="";//ERROR CODES
//INSERT CUSTOM EVENTS
//END EDITABLE SECTION
//Function to Override Variables at the Page Level
try
{
HBXOverride();
}
catch (err) {}
//REQUIRED SECTION. CHANGE "YOURSERVER" TO VALID LOCATION ON YOUR WEB SERVER (HTTPS IF FROM SECURE SERVER)
|
|