/*
		Kodyt v tozi file prinadleji na Firma Orion.
		Izpolzvaneto na chast ot koda ili celia kod e ABSOLIUTNO ZABRANENO,
		bez razreshenie ot strana na firma Orion!
		Copyright(C) Orion 2002. Vsichki prava zapazeni!
								 All rights reserved!
*/
var win=null;

function showForm(id, userid, what)
{
    document.name='Boss';
	if (win != null && !win.closed)
		win.close();
		
    var exec;
	maxY=((ns4)?window.innerHeight:document.body.clientHeight);
    maxX=((ns4)?window.innerWidth:document.body.clientWidth);
    var midx = parseInt(maxX/2)-380;
    var midy = parseInt(maxY/2);
	var hght = 240;
	var wdth = 560;
	var top = 20;
	if (what=='Groups')
	{
	    exec='editgroups.php?groups='+id+'&userid='+userid;
		hght=350;
		wdth=600;
	}
	else if (what=='PData')
	{
		exec='useredit.php?userid='+userid;
		hght=260;
		wdth=700;
	} else if (what=='UAdd')
	{
		exec='add.php?userid='+userid;
		wdth=350;
	}
	else if (what=='Templates')
	{
		exec='templates.php?id='+userid;
		wdth=260;
		hght=400;
		top=70;
		midx=10;
	}
	else if (what=='FAQ')
	{
		exec='faq.html';
		wdth=screen.width-30;
		hght=400;
		top=60;
		midx=10;
	}
	else
		exec = 'edit.php?phonebook='+id+'&userid='+userid;
		
    win=window.open(exec,'EditForm','top='+top+',left='+midx+',width='+wdth+'px,height='+hght+'px,toolbar=0,location=0,directories=0,menuBar=0,resizable=0,scrollBars=yes,status=0');
    win.focus();
return
}