function ShowDetail(url) {
    PopupWin = window.open(url,'PopupWin','width=550,height=400,scrollbars=yes,resizable=yes');
    if (PopupWin && PopupWin.open)
    {
        PopupWin.moveTo(100,50);
        PopupWin.focus();
    }
}

function ShowPreview(TheForm, PreFormName)
{
	TheForm.PreviewForm.value = PreFormName;
	TheForm.submit();
}

