/**
 * Displays an confirmation box beforme to submit a "DROP/DELETE/ALTER" query.
 * This function is called while clicking links
 *
 * @param   object   the link
 * @param   object   the sql query to submit
 *
 * @return  boolean  whether to run the query or not
 */
       
function ShowBigImage(src,width,height,alt,border){
 var gwidth=width+25;
 var gheight=height+30;
 var win=window.open('','View','left=0,top=0, height='+gheight+',width='+gwidth+',titlebar=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
 win.document.write("<html><head><title>Просмотр изображения</title></head><body><img src='"+src+"' width='"+width+"' height='"+height+"' alt='"+alt+"' border='"+border+"'></body></html>");
 win.focus();
}
