// JavaScript Document
function contents_DoFSCommand(command,args) {
if (command == "openPopWinV") {
var newWin = window.open('popup/zoom/'+args+'.html',"_blank","width=600,height=770,location=no,directories=no,status=no,scrollbars=yes,resizable=no");
                  newWin.resizeTo(600,776);
} else if (command == "openPopWinH") {
var newWin = window.open('popup/zoom/'+args+'.html',"_blank","width=990,height=650,location=no,directories=no,status=no,scrollbars=yes,resizable=no");
                  newWin.resizeTo(990,656);
} else if (command == "openPopWin1") {
var newWin = window.open(args+'.shtml',"_blank","width=560,height=730,location=no,directories=no,status=no,scrollbars=yes,resizable=no");
                  newWin.resizeTo(560,730);
} else if (command == "openGallery") {
var newWin = window.open("gallery/index.shtml","_blank","width=1050,height=760,location=no,directories=no,status=no,scrollbars=yes,resizable=no");
                  newWin.resizeTo(1050,810);
} else if (command == "openHelp") {
var newWin = window.open("help/help.shtml","help","width=750,height=520,location=no,directories=no,status=no,scrollbars=yes,resizable=no");
                  newWin.resizeTo(750,520);
} else if (command == "openDTtop") {
var newWin = window.open("http://www.nikondigitutor.com/index_eng.html","_self");
} else if (command == "openTop") {
var newWin = window.open("index.shtml","_self");
} else if (command == "openSpecial") {
var newWin = window.open('http://chsvimg.nikon.com/products/imaging/lineup/d700/home.htm','spc','width=974,height=650,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no').moveTo(0,0);
}
newWin.focus();
}
