function onComplete(text, xml)
{
  
  document.getElementById('maindata').innerHTML = text;
}

function onEnd(text, xml)
{

}

function payComplete(text,xml)
{
	document.getElementById('paypal').innerHTML = text;
}

function payEnd(text,xml)
{

}

function NewWindow(img)
{
	newWindow = open("", "", "width=800, height=600");
	newWindow.document.write("<title></title>");
	newWindow.document.write("<BODY bgcolor=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>");
	newWindow.document.write("<table width=100% border=0 cellspacing=0 cellpadding=0 height=100%><tr><td align=center valign=middle><a href=\"javascript:window.close();\"><img src="+img+" border=0></a></td></tr></table>");
	newWindow.document.write("</BODY>");
	newWindow.document.close();
}