// popup script

function popup(url,x,y,width,height,id)
{
	winparams='toolbar=no,location=no,directories=no,menubar=no,status=yes,';
	winparams+='scrollbars=yes,resizable=no';
	if (navigator.appName.indexOf("Microsoft")>=0)
	{
		winparams+=',left=' + x + ',top=' + y + ',width=' + width + ',height=' + height;
	}
	else
	{
		winparams+=',screenX=' + x + ',screenY=' + y + ',width=' + width + ',height=' + height;
	}
	return window.open(url,"ksipopup"+id,winparams);
}
