< Html >
< Head >
< script language
= "javascript"
>
function popupprint ( )
{
var url
= 'clientprospects.aspx';
var width
= 875;
var height
= 475;
var left
= (screen.width - width) / 2;
var top
= (screen.height - height) / 2;
var params
= 'width=' + width + ', height=' + height;
params += ', top=' + top + ', left=' + left;
params += ', directories=no';
params += ', location=no';
params += ', menubar=no';
params += ', resizable=yes';
params += ', scrollbars=yes';
params += ', status=no';
params += ', toolbar=no';
newwin = window.open(url, 'deal', params);
if (window.focus) { newwin.focus() } return false;
}
</ script >
< Head />
< Body >
< a href
= "#" onclick = "return popupprint();"
>
< img src
= "images/fading_img.png"
width = '701'
height ='321'
/>
< a />
< Body />
< Html />
|