|
\n');
}
function openIt(command, args) {
// alert("openIt() called\ncommand: "+command+";\nargs: "+args);
//This launches a new window and then
//focuses it if window.focus() is supported.
// win = window.open(url,name,features);
if (command == "open_wind"){
window.open(args,"mywindow","status=no,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,width=300,height=300");
}
if (command == "open_pict"){
window.open(args,"mywindow2","status=no,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,width=550,height=650");
}
}
function startDownload(url) {
location.href = url;
}
//-->
|