// JavaScript Document
var win;
function showWindow(path,width,height)
{

if (win)
  {
    if(!win.closed) win.close();
  }
 strPath=path;
 win=open(strPath,"DPPOPEN" ,"toolbars=no,maximize=no,scrollbars=no,menubar=no,width="+width+",height="+height+",directories=no,resizable=0,screenX=0,screenY=0,left=180,top=40");
 win.focus();
}

function enquiryCheck(frm)
{
	msg="Following Field Required -\n";
	flag=true;
	if(frm.fname.value=="")
	{
		msg+="Name.\n";
		flag=false;
	}
	if(frm.email.value=="")
	{
		msg+="E-mail Id.\n";
		flag=false;
	}
	if(!flag)
	{
		alert(msg);
	}
	return flag;
}

