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