var sourceId = sourceId;
var mode = mode;

var type =type;

var widthValue = widthValue;

var heightValue = heightValue;

var backColor = backColor;
if(typeof backColor == 'undefined')
{
  backColor="white";
}
else
{
  if(backColor==null || backColor=="")
	{
    backColor="white";
  }
  else
  {
    var flag = backColor.indexOf('#');
    if(flag == 0)
    {
      backColorTemp = backColor.split("#");
      backColor = backColorTemp[1];
    }
  }
}

var hidep=hidep;
if(typeof hidep == 'undefined')
{
  hidep="null";
}
else
{
  if(hidep==null || hidep=="")
	{
    hidep="null";
  }
}

document.write('<style type="text/css">body {background-color: transparent} </style>')
document.write('<iframe name="quickApplyFrame" id="quickApplyFrame"  src="http://www.apnaloan.com/reusableJsCodeFor11And5Fields.php?sourceId='+sourceId+'&mode='+mode+'&type='+type+'&heightValue='+heightValue+'&backColor='+backColor+'&hidep='+hidep+'" scrolling="no" width="'+widthValue+'" height="'+heightValue+'" frameborder="0" allowtransparency="true" background-color="transparent"></iframe>');