I am trying to pass a variable with window.open using the following code... and I am getting nothing. Granted my knowledge with js is limited, so it may or may not be a: something stupid or b: not possible. Any help or ideas are greatly appreciated. Thanks - Rory
function onBtnClientCoy()
{
var clientCode;
clientCode = new String(document.FORM1.clienCode.value);
var strURL = new String ("updateClientCoy.asp?clientID=" + clientCode);
result = window.open( strURL );
return result;
}
function onBtnClientCoy()
{
var clientCode;
clientCode = new String(document.FORM1.clienCode.value);
var strURL = new String ("updateClientCoy.asp?clientID=" + clientCode);
result = window.open( strURL );
return result;
}