﻿// JScript File

function openN(URL,ATTR)
{
	if (window.winN && !winN.closed) winN.location = URL;
	else winN = open(URL,"win",ATTR);
	winN.focus();
}
function chkfrm()
			{
				if(!/\S/.test(document.getElementById("txtReciptNo").value))
				{
					alert("Please enter your Receipt No. !!");
					document.getElementById("txtReciptNo").focus();
					return false;
				}
				return true;
			}
