//*************************************************************************************************************
//****** Modified By:   Valerie Lisitsa                                                                    ****
//****** Company:       Smart and Associates, LLP                                                          ****
//****** Modify Date:   November 2004                                                                      ****
//****** File:          setStyle.js                                                                        ****
//****** Modification:  Need to check if navigator.platform exists, since some older browsers              ****
//******                do not support it.                                                                 ****
//*************************************************************************************************************


function setStyle(client) {
	// Style sheet for Macintosh
	if(navigator && navigator.platform && navigator.platform.indexOf('Mac')!=-1) {
		document.write('<link rel="stylesheet" type="text/css"  href="http://www.marketingresearchresources.com/css/CSS_dimensions/'+client+'_mac.css">');
	// Style sheet for Windows 
	} else {
		document.write('<link rel="stylesheet" type="text/css" href="http://www.marketingresearchresources.com/css/CSS_dimensions/'+client+'_win.css">');
	}
}
