// These defaults should be changed the way it best fits your site
var _POPUP_FEATURES = '';

function isUndefined(v) {
    var undef;
    return v===undef;
}

function raw_popup(url, target, features) {
    // pops up a window containing url optionally named target, optionally having features
    if (isUndefined(features)) features = _POPUP_FEATURES;
    if (isUndefined(target  )) target   = '_blank';
    var theWindow = window.open(url, target, features);
    theWindow.focus();
    return theWindow;
}

function img_popup(url, target, features) {
    // pops up a window containing url optionally named target, optionally having features
    if (isUndefined(features)) features = _POPUP_FEATURES;
    if (isUndefined(target  )) target   = '_blank';
    var theWindow = window.open("", target, features);
    
	theWindow.document.write("<html>\n");
	theWindow.document.write(" <head>\n");
	theWindow.document.write("  <title>Immagine</title>\n");
	theWindow.document.write(" </head>\n");
	theWindow.document.write("<body style=\"margin:0;padding:0\">\n");
	theWindow.document.write('<img src="'+url+'" border="0" />\n');
	theWindow.document.write("</body>\n");
	theWindow.document.write("</html>");
	
	theWindow.document.close();
	
	theWindow.focus();
    return theWindow;
}

function apri_finestra(theURL,larghezza,altezza,scrollbar) {
   window.open(theURL,'','scrollbars='+scrollbar+',resizable='+scrollbar+',width='+larghezza+',height='+altezza+',status=no,location=no,toolbar=no');
}

