// JavaScript Document
function backPage(f)
{
	window.document.forms[0].target = "_self";
	window.document.forms[0].action	= f;
	window.document.forms[0].submit();
	
}
function win_popup(url,h,w) {
  window.open(url,"PopUp",'resizable=yes,location=no,scrollbars=yes,toolbar=no,menubar=no,directories=no,status=yes,height='+h+',width='+w);
  return true;
}
function self_detail(st)
{

window.document.forms[1].target = "_self";

window.document.forms[1].action = st;

window.document.forms[1].submit();

}

function self_detail1(st)
{

window.document.frm1.target = "_self";

window.document.frm1.action = st;

window.document.frm1.submit();

}

function self_detail2(st)
{

window.document.frmLogin.target = "_self";

window.document.frmLogin.action = st;

window.document.frmLogin.submit();

}
