function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Beginner_sforceBeginner_sforce 

how do I create a hyperlink in an embedded S-control to open another S-control in a popup window?

Hi, I'm still a rookie,
 
I got this S-control which contains just a hyperlink to another S-control :
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML Strict//EN"><META http-equiv="Content-Type" content="text/html; charset=utf-8"> 
<HTML>
<HEAD>
<style>
body {BACKGROUND-COLOR: #f3f3ec}
a {COLOR: #333;
font-family : Arial;
font-size : 9pt;
text-decoration :underline}
 </style>
<script src="/js/functions.js" type="text/javascript"></script>
</HEAD>
<body>
<a href="{!URLFOR( $SControl.testingDeveloper )} ">[Change Mecho/Lumi]</a>
</body>
</HTML>

 Now, I embedded this code in one of my page layout, the problem is everytime i click on the link, the new window will be displayed inside the Iframe. I tried using  target  = "_blank" but it opens up a new window with the toolbar and i just need a popup, is there anyway to do this?