I've got an application that has a quasi-browser built into it and the below Javascript is in the browser in the application. This works a treat on all users' PCs except those running the application as a remote app using terminal services.
When a remote user clicks on the button, it does bugger all!
Is there a way I can get this link to open up either in another terminal app, or in a local app?
<form action="http://intranet-srv02/emailsend/contact.php" method="post" onsubmit="target_popup(this)">
<input name="userid" type="hidden" value="[userid]" />
<input type="submit" value="Contact Mailshot" />
</form>
<script type="text/javascript">
function target_popup(form) {
window.open('', 'formpopup', 'width=1100,height=750,resizable,scrollbars');
form.target = 'formpopup';
}
</script>