
function open_win(url,width,height)
	{
		remote=window.open(url,'calander','status=no,scrollbars=yes,resizable=yes,top=425,left=525,height='+height+',width='+width);
		if (remote != null)
		{	
			if (remote.opener == null)
			remote.opener = self;
		}
	}
