<!--
function popPicture (page,menu){

var sProperties = "";
sProperties += "scrollbars=1,resizable=1,width=600,height=400,";
sProperties += "status=0,menubar="+menu+",location=0,toolbar="+menu+",left=20,top=20";

SendWindow = window.open(page,"SendWindow",sProperties);
SendWindow.focus(); 
}
//-->