var stylesheet, breite;

if (window.innerWidth) {
 breite = window.innerWidth;
} else {
 breite = document.body.clientWidth;
}

if (breite>=920) {
 stylesheet = 'scripts/pos1000.css';
 document.writeln('<style type="text/css"><!-- @import url(' + stylesheet + '); --> </style>');
}


function fsize(size,unit,id)
{
	var vfontsize = document.getElementById(id);
	vfontsize.style.fontSize = size + unit;
}

     function fcolor(color,id)
{
	var vfontname = document.getElementById(id);
	vfontname.style.color = color;
}


