30-11-2007, 15:15
|
|
|
חבר מתאריך: 09.10.04
הודעות: 165
|
|
אם אתה רוצה לפתוח POPUP בגודל מסויים ושיפתח במרכז המסך אז תעשה זאת ככה:
קוד:
<SCRIPT LANGUAGE="JavaScript">
<!--
function launchCenter(url, name, height, width) {
var str = "height=" + height + ",innerHeight=" + height;
str += ",width=" + width + ",innerWidth=" + width;
if (window.screen) {
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;
var xc = (aw - width) / 2;
var yc = (ah - height) / 2;
str += ",left=" + xc + ",screenX=" + xc;
str += ",top=" + yc + ",screenY=" + yc;
}
return window.open(url, name, str);
}
// -->
</SCRIPT>
<a href="javascript:void(0)" onclick="launchCenter('your-page.html', 'center', 505, 710)">
click to open</a>
|