Hello,
I have a problem with the following function:
I would like to define the hight/length of the window which I open when
I call the function.
The problem is that the window opens but not with the size I defined
when calling the function.
Tanks for your help.
<head>
<script LANGUAGE="JavaS cript">
function FuncWindow(strP age,Vlargeur,Vh auteur,)
{
var Vhauteur
var Vlargeur
string=
"toolbar=0,scro llbars=1,locati on=0,statusbar= 0,menubar=0,res izable=1,width= Vlargeur,height =Vhauteur,Left= 200,Top=100";
fin=window.open (strPage,"Find" ,string);
fin.focus();
// document.write (Vhauteur)
}
</script>
</head>
<body>
<A
onclick="FuncWi ndow('../pages/aide/perso_accueil_c odepostal.asp', 300,500)">
<input type="button" name="btnEntrer " value=" Entrer " ></a>
</body>
I have a problem with the following function:
I would like to define the hight/length of the window which I open when
I call the function.
The problem is that the window opens but not with the size I defined
when calling the function.
Tanks for your help.
<head>
<script LANGUAGE="JavaS cript">
function FuncWindow(strP age,Vlargeur,Vh auteur,)
{
var Vhauteur
var Vlargeur
string=
"toolbar=0,scro llbars=1,locati on=0,statusbar= 0,menubar=0,res izable=1,width= Vlargeur,height =Vhauteur,Left= 200,Top=100";
fin=window.open (strPage,"Find" ,string);
fin.focus();
// document.write (Vhauteur)
}
</script>
</head>
<body>
<A
onclick="FuncWi ndow('../pages/aide/perso_accueil_c odepostal.asp', 300,500)">
<input type="button" name="btnEntrer " value=" Entrer " ></a>
</body>
Comment