Advertisement
Advertisement
| 08.22.2008 at 04:29AM PDT, ID: 23669839 | Points: 250 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
// JScript File
function displaywindow()
{
var h=window.screen.availHeight;
var w=window.screen.availWidth;
var s="width=" + w + "px,height=" + h + "px,resizable=no,addressbar=no,minimizable=no,resizable=no,toolbar=no,menubar=no,location=no"
window.open('portfolio.htm','protfolio',s,true);
return false;
}
function wndcenter()
{
window.moveTo(0,0);
window.status='0'
return false;
}
|