// ## 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/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)

