// ## styleSpecs.js
// 	Writes the appropriate CSS link for table attributes depending on the user's browser.

// TEMPLATE(S) USED:
// 	specs.html


// Writes CSS link

startString = '<link rel="stylesheet" href="../css/price_specs';
endString = '.css" type="text/css">';

if ((is.ie || is.ns5)) styleString = startString + 'ie';
	else styleString = startString + 'nn';
if (is.mac && is.ns) styleString = styleString + 'mac';

styleString = styleString + endString;

document.write(styleString)
