• Файл: emb_post.html
  • Полный путь: https://files.multura.space/qiwi/interface_fake-osmp_v1.0.0/system/emb_post.html
  • Дата изменения: 12/19/2011 8:40 AM
  • Размер файла: 1.52 KB
  • MIME-тип: text/html
  • Кодировка: utf-8
 
Открыть Назад
<html>
<head>
	<title>Validate_Confirm</title>
	<meta http-equiv="content-type" content="text/html; charset=windows-1251" />
	<meta http-equiv="pragma" content="no-cache" />
	<meta http-equiv="refresh" content="60; URL=./index.html" />
	<link rel="stylesheet" href="./css/claim.css" type="text/css" />
	<script type="text/javascript" src="./js/engine/utils.js"></script>
	<script type="text/javascript" src="./js/engine/storage.js"></script>
	<script type="text/javascript" src="./js/engine/base.js"></script>
	<script type="text/javascript">

        function init() {
            var o = Object.deserialize(storage.get("postData"));
            ff.action = o.url; 
            ff.appendChild(createInput("prv_id", o.id));
            ff.appendChild(createInput("prv_name", o.name));
            for (var f in o["constParams"]) {
                if (o["constParams"].hasOwnProperty(f)) {
                    if ($is(o["constParams"][f], String)) {
                        ff.appendChild(createInput(f, o["constParams"][f]));
                    }
                }
	        }
	        ff.submit();
        }
        
        function createInput(sName, sValue) {
            var oInput = document.createElement('input');
            oInput.id = oInput.name = sName.toString();
            oInput.type = 'hidden';
            oInput.value = sValue.toString();

            return oInput;
        }

	</script>
</head>
<body onload="init();">
    <form name="ff" id="ff" method="post" action="#"></form>
</body>
</html>