This commit is contained in:
Andreas Österreicher
2007-09-27 14:50:35 +00:00
parent 591095b48c
commit d89fd7dc59
6 changed files with 144 additions and 32 deletions
+12
View File
@@ -167,6 +167,18 @@ function getDataFromClipboard()
return pastetext;
}
// ****
// * Oeffnet ein neues Fenster welches dann die Datei 'action' mit dem POST Parameter 'data' aufruft
// ****
function OpenWindowPost(action, data)
{
newwindow= window.open ("","FAS","width=350, height=350");
newwindow.document.getElementsByTagName('body')[0].innerHTML = "<form id='postform-form' name='postfrm' action='' method='POST'><input type='hidden' id='postform-textbox-data' name='data' /></form>";
newwindow.document.getElementById('postform-textbox-data').value=data;
newwindow.document.getElementById('postform-form').action=action;
newwindow.document.postfrm.submit();
}
// ****
// * Liefert das Aktuelle Studiensemester
// ****