var detect = navigator.userAgent.toLowerCase();
var OS,browser,version,thestring;

if (isIt('msie')) browser = "ie"
/*version = detect.charAt(place + thestring.length);*/
if (isIt('win')) OS = "win"

if (browser =="ie" && OS=="win"){
		document.styleSheets[0].addRule('.printer', 'display: none');
	}


function isIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}