/*  view js file  */

function view_js(url) {
	var nw = open(url,"_blank","height="+(screen.availHeight-60)+",width="+(screen.availWidth-10)+",toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1");
	nw.moveTo(0,0);
	nw.focus();
}

function view_js_s(url,h,b) {
	if(h==0) h=screen.availHeight;
	if(b==0) b=screen.availWidth;
	var nw = open(url,"_blank","height="+(h-60)+",width="+(b-10)+",toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1");
	nw.moveTo(0,0);
	nw.focus();
}

function help_topic(hid,h,w) {
	var nw = open("../public/hilfe.php?hid="+hid,"help","height="+h+",width="+w+",toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1");
	nw.moveTo(0,0);
	nw.focus();
}