heres the function by the way:
Code: Select all
function popup()
{
testwindow=window.open
("url", "name","status=1, toolbar=1,
width=300, height=200");
testwindow.moveto(100,100);
}Moderator: General Moderators
Code: Select all
function popup()
{
testwindow=window.open
("url", "name","status=1, toolbar=1,
width=300, height=200");
testwindow.moveto(100,100);
}Code: Select all
function login()
{
testwindow=window.open ("http://localhost/project2/test.php", "join","status=yes, toolbar=yes,
width=300, height=200");
testwindow.moveto(0, 0);
}