9 lines
270 B
JavaScript
9 lines
270 B
JavaScript
function OpenWindowX(url)
|
|
{
|
|
window.open(url,'','top=0,left=0,width=100px,height=100px,status=yes,resizable=no,scrollbars=yes');
|
|
}
|
|
function OpenWindowT(url)
|
|
{
|
|
window.open(url,'','top=0,left=0,width=800px,height=700px,status=yes,resizable=no,scrollbars=yes');
|
|
}
|