|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: |
this is the code i am using to open new window.
var w = openWindowWithParams('/coast/shared/wait.jsp', "apply_account_general", 90, 90 , 950, 710);
tbaCustomerform.statusCode.value = status;
tbaCustomerform.toDo.value = "tba_save_customer_data_TBA";
tbaCustomerform.target ="apply_account_general";
tbaCustomerform.submit();
w.focus();
busyCursor(w.document);
function openWindowWithParams(url, win, x, y, w, h) {
var theWin;
if ( "Netscape" == navigator.appName ) { // netscape
theWin = window.open(url, win,
"screenx=" + x + ",screeny=" + y + ",outerheight=" + h + ",outerwidth=" + w +
",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
} else if ( "Microsoft Internet Explorer" == navigator.appName ) { //IE
theWin = window.open(url, win,
"left=" + x + ",top=" + y + ",height=" + h + ",width=" + w +
",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}
return theWin;
|
Advertisement
| Hall of Fame |