// Periodic table of elements written by Eni Generalic - http://www.periodni.com/
// If you use a variant of this in your page, then please email me (enig@periodni.com)

function its(put,cilj) {
	stil = put + 'css/pse-' + cilj + '.css';
	if(document.createStyleSheet) {
		document.createStyleSheet(stil);
	}
	else {
		var cssNode = document.createElement('link');
		cssNode.type = 'text/css';
		cssNode.rel = 'stylesheet';
		cssNode.href = stil;
		cssNode.media = 'screen';
		cssNode.title = 'dynamicLoadedSheet';
		document.getElementsByTagName("head")[0].appendChild(cssNode);
	}

	//document.getElementById('loptica').style.top = 45px;
}

//Eni Generalic, Split, Create: 2007/05/31; Update: 2008/04/7


