function openWin(relativeAppPath,width,height) {
     window.open(relativeAppPath, "appWindow", "scrollbars=1,status=1,resizable=1,menubar=1,width="+width+",height="+height);
     return false;
}

function openPic(relativeAppPath,width,height) {
     window.open(relativeAppPath, "picWindow", "scrollbars=0,status=0,resizable=0,menubar=0,width="+width+",height="+height);
     return false;
}