function OpenNewURLWindowProducts( myURL, myWinName ){ var str1, str2, tramp, x; tramp = window.open( '', myWinName, 'width=680, height=550, resizable=yes, scrollbars=yes, status=no'); str1 = new String( tramp.top.location.href ); str2 = new String( myURL ); if( str1.toUpperCase() != str2.toUpperCase() ){ tramp.top.location = str2; } tramp.focus(); }