The first step for creating a pop up link is to use the Customizer Tool to generate an HTML page ("myWimpy.html"). Once you've saved the "myWimpy.html" to your PC, open the file in a text editor (or HTML editor such as Dreamweaver).
The file contains the following HTML code:
<html>
<head>
<title>Wimpy Player</title>
</head>
<body bgcolor="000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle">
<!-- START WIMPY PLAYER CODE -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,47,0" width="520" height="300" id="wimpy1540">
<param name="allowScriptAccess" value="always" />
<param name="movie" value="http://www.yoursite.com/mp3s/wimpy.swf" />
<param name="loop" value="false" />
<param name="menu" value="false" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="000000" />
<param name="flashvars" value="wimpyApp=http://www.yoursite.com/mp3s/wimpy.php&wimpySkin=http://www.yoursite.com/mp3s/skins/skin_itunes.xml&startPlayingOnload=yes" />
<embed src="http://www.yoursite.com/mp3s/wimpy.swf" flashvars="wimpyApp=http://www.yoursite.com/mp3s/wimpy.php&wimpySkin=http://www.yoursite.com/mp3s/skins/skin_itunes.xml&startPlayingOnload=yes" loop="false" menu="false" quality="high" width="520" height="300" scale="noscale" salign="lt" name="wimpy1540" align="center" bgcolor="000000" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
<!-- END WIMPY PLAYER CODE -->
</td>
</tr>
</table>
</body>
</html>
Select only the code starting with:
<!-- START WIMPY PLAYER CODE -->
... and end with:
<!-- END WIMPY PLAYER CODE -->
With the code selected, "copy" it to your clipboard. Select the all of the code and "copy" it to your clipboard.
HINT: To copy the selected code, right-click and choose "Select All", then right click again and chose "Copy".
NOTE: Do NOT copy all of the code. You only need to copy the code that is colored green above. If you copy all of the code, you may "break" your existing page.
Open the page you wish to insert Wimpy into with a text editor (or an HTML editor such as Dreamweaver).
"Paste" the code anywhere in between the opening <body> and closing </body> tags of the source HTML code in your existing page.
Save the page and re-upload it to your web site.