function PopupWnd(PopURL, PopTitle, PopCaption, WndName, Left, Top, Width, Height)
{
	if (!Left) Left=50
	if (!Top)  Top=50
	if (!Width) Width=475
	if (!Height) Height=520

	if (PopURL)
	{
		UrlStr = "/popup.php?PopUrl=" + PopURL + "&PopTitle=" + PopTitle + "&PopCaption=" + PopCaption
		NewWnd = window.open(UrlStr, WndName, "height="+Height+" width="+Width+" top="+Top+" left="+Left)
		NewWnd.document.clear()
		NewWnd.focus()
	}
}

function Popup(PopURL, WndName, Left, Top, Width, Height)
{
	if (!Left) Left=50
	if (!Top)  Top=50
	if (!Width) Width=475
	if (!Height) Height=520

    NewWnd = window.open(PopURL, WndName, "height="+Height+" width="+Width+" top="+Top+" left="+Left)
    NewWnd.document.clear()
    NewWnd.focus()
}

function PrintWnd(PopURL)
{
	if (PopURL)
	{
		NewWnd = window.open(PopURL, "Print", "height=520; width=475; top=50; left=50; location=0; toolbar=0; scrollbars=1; resizable=1; menubar=1")
		NewWnd.document.clear()
		NewWnd.focus()
	}
}

function PopupWnd2(PopURL, WndName, Left, Top, Width, Height)
{
	if (!Left) Left=50
	if (!Top)  Top=50
	if (!Width) Width=475
	if (!Height) Height=520

    NewWnd = window.open(PopURL, WndName, "height="+Height+" width="+Width+" top="+Top+" left="+Left+"; location=0; toolbar=0; scrollbars=1; resizable=1; menubar=1")
    NewWnd.document.clear()
    NewWnd.focus()
}

