problem in Javascripts.....
This is the code....
<head>
<script type="text/javascript">
function sendMail(_frm){
var eml="shuvrapan.19@gmail.com";
var bod="&body="+_frm.txtTwo.value+" "+_frm.txtOne.value;
var subj="?subject=Whatever you want";
location.href="mailto:"+eml+subj+bod;
}
</script>
</head>
<body>
<form action="mailto:shuvrapan.19@gmail.com" enctype="text/plain"
method="POST" onsubmit="sendMail(this);return false;">
<!--<select name="selOne">
<option value="Dog">Dog</option>
<option value="Cat">Cat</option>
</select>-->
<textarea name="txtTwo"></textarea>
<textarea name="txtOne"></textarea>
<input type="submit" value="Submit" />
</form>
</body>
</html>
Problem is that when I press sumit button then its go to the OfficeOutlook and show the value in verticaly......But I want the values shows Horizantally.
plzz help me out its urgent...............