Thanks again for the code, I've improved on it a bit and now it will turn EVERY form on the targetpage into a GET by using the following code:


function changeMethod(){
numForms = NewWin.document.forms.length
for (var i = 0; i < numForms; i++)
{
NewWin.document.forms[i].method="GET";
}
}


_________________________
Tony Fabris