
function printarticle(id, lang)
{
	Fenster = window.open("printing.php?id=" + id + "&lang=" + lang, "Fenster", "width=720, height=450, resizable=yes, menubar=no, scrollbars=yes");
	Fenster.moveTo(50,50);
	Fenster.focus();
}

function Picture(pic,title,width,height)
	{
		popup = window.open(pic, title, 'width='+width+', height='+height+', toolbar=no, directories=no, status=no, scrollbars=no, resizable=yes, menubar=no');
		popup.focus();
	}

function checkAll(checkBox)
	{
		var v = checkBox.checked;
		var f = checkBox.form;
		for (var i = 0; i < f.elements.length; i++) {
			if (f.elements[i].type == "checkbox") {
				f.elements[i].checked = v;
				}
			}
	}

function storeCaret(textEl)
    {
	   if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate();
	}

function BlurLinks(){
	if(document.getElementById){
    		lnks=document.getElementsByTagName('a');
    		for(i=0;i<lnks.length;i++){
    			lnks[i].onfocus=new Function("if(this.blur)this.blur()");
    		}
	}
}