// 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.forms[2].target = "_self";

window.document.forms[2].action = st;

window.document.forms[2].submit();

}
