function pop(title, width, height, filename)
{
	thefile=filename;
		
	width=width +25;
	height=height + 50;				


	popbox=window.open(thefile,title,"toolbar=no,scrollbars=yes,resizable=yes,directories=no,menubar=no,width="+width+",height="+height);
	if(popbox !=null)
	{
		if (popbox.opener==null)
		{
			popbox.opener=self;
		}
	}
}


function pop1(title, width, height, filename)
{
	thefile=filename;
		
	width=width +25;
	height=height + 50;				


	popbox1=window.open(thefile,title,"toolbar=no,scrollbars=no,resizable=no,directories=no,menubar=no,width="+width+",height="+height);
	if(popbox !=null)
	{
		if (popbox.opener==null)
		{
			popbox.opener=self;
		}
	}
}
