Please change the JavaScript to the follwoing (and use any of the other answers for the CSS instead of using an inline style)
<a href="selectprofiletype.php" target="crm_create" style="text-decoration:none"
onclick="var w = window.open(this.href,this.target,'width=700,height=350');
return w?false:true;"> User Profile</a>
since your code will give problems in several browser - for example the window name may not have spaces
The code would be nicer if unobtrusive:
window.onload=function() {
document.getElementById("crm").onclick=function() {
var w = window.open(this.href,this.target,'width=700,height=350');
return w?false:true;
}
}
using just
<a id="crm" href="selectprofiletype.php" target="crm_create" User Profile</a>