I made a couple of changes and realized I didn't mention the javascript that needs to be in the head tag. First, thee is a IMHO much better pic to use which is cvv2.gif and you could convert it to jpg for a smaller file. Anyway, if you want to change to it in cvv.html change the lines with the table info to
Code:
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="600" id="AutoNumber1">
<tr>
<td align="center" valign="middle"><img src="images/cvv2.gif" width="600" height="354"></td>
</tr>
</table>
Second, you need to have the javascript in your head tag. The easiest way is to put it in your main_page.tpl.php. Now, this code is configured for cvv2.gif because the dimension are different but you should get the picture. No pun intended.
Code:
<script type="text/JavaScript"><!--
function CVVPopUpWindow(url) {
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=600,height=354,screenX=250,screenY=250,top=150,left=150')
}
//--></script>
Bookmarks