12 lines
324 B
Text
12 lines
324 B
Text
<script language="JavaScript">
|
|
<!--
|
|
|
|
function openPopup(img,width,height) {
|
|
if (img && width && height) {
|
|
popUp = window.open(img,"popUp","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=" + (width+16) + ",height=" + (height+20));
|
|
}
|
|
return;
|
|
}
|
|
|
|
// -->
|
|
</script>
|