Vol 400,266
posted on
Mar 19, 2007 10:49AM
function loadSymbol(){
var symbol="EDIG";
document.miniQuote.QuotesSecurityName.value=symbol;
}
var schwabPOP;
function pop(u) {
var url = u;
var w=500;
var h=500;
var args = ',location=no,resizable=yes,menubar=no,status=no,toolbar=no,scrollbars=yes';
if (arguments.length >= 2) {
w = arguments[1];
}
if (arguments.length >= 3) {
h = arguments[2];
}
if (arguments.length == 4) {
args = ',' + arguments[3];
}
if ((!schwabPOP) || (schwabPOP.closed)) {
schwabPOP = window.open(url,'WSODPopWin','width=' + w + ',height=' + h + args);
schwabPOP.focus();
} else {
schwabPOP.focus();
schwabPOP = window.open(url,'WSODPopWin','width=' + w + ',height=' + h + args);
}
}
function popParent(u) {
var url = u;
var w=500;
var h=500;
var args = ',location=no,resizable=yes,menubar=no,status=no,toolbar=no,scrollbars=yes';
if (arguments.length >= 2) {
w = arguments[1];
}
if (arguments.length >= 3) {
h = arguments[2];
}
if (arguments.length == 4) {
args = ',' + arguments[3];
}
if ((!schwabPOP) || (schwabPOP.closed)) {
schwabPOP = parent.open(url,'WSODPopWin','width=' + w + ',height=' + h + args);
schwabPOP.focus();
} else {
schwabPOP.focus();
schwabPOP = parent.open(url,'WSODPopWin','width=' + w + ',height=' + h + args);
}
}
|