26 lines
697 B
PHP
26 lines
697 B
PHP
<html>
|
|
<link href="includes/css-js/admin.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
<!--
|
|
.style1 {font-size: small}
|
|
-->
|
|
</style>
|
|
|
|
<body>
|
|
<form>
|
|
<input type="hidden" name="filterkey" value="<?php echo $filterkey?>"/>
|
|
<input type="hidden" name="paramlist" value="<?php echo $paramlist?>"/>
|
|
</form>
|
|
<script>
|
|
document.forms[0].filterkey.value=window.opener.document.getElementById('filterkey').value;
|
|
document.forms[0].paramlist.value=window.opener.document.getElementById('paramlist').value;
|
|
|
|
document.forms[0].method='Post';
|
|
document.forms[0].action=window.opener.document.forms[0].pdf_tender.value;
|
|
|
|
document.forms[0].submit();
|
|
|
|
//window.close();
|
|
</script>
|
|
</body>
|
|
</html> |