he intentado crear algo parecido a esto :
img27.imageshack.us/img27/8992/ejemploavk.jpg
que con un boton se desplege un iframe
si alguien me podria hechar la mano o pasarme algunos tutos sobre esto pues no lo consigo hacer
solo tengo esto pero no me funciona:
Código PHP:
   <script>
function display_upload_imageshack(button)
{
    var container = document.getElementById('servimg_upload_gui');
 
    if ( !document.getElementById('obj_servimg') )
    {
        container.innerHTML = '<p><iframe src="imageshack.us/iframe.php?txtcolor=111111&type=blank&size=30" scrolling="no" allowtransparency="true" frameborder="0" width="280" height="70">Update your browser for ImageShack.us!</iframe></p>';
    }
 
    var div = document.getElementById('servimg_upload_gui');
    var visible = div.style.visibility;
 
    if ( visible == 'hidden' )
    {
        var window_w = (document.body) ? document.body.clientWidth : window.innerWidth;
        var cd = FindXY(button);
        var h = button.offsetHeight;
        var i = 0;
        while ( i < selectId.length )
        {
            if ( document.getElementById(selectId[i]) ) {
                document.getElementById(selectId[i]).style.visibility = 'hidden';
            }
            i++;
        }
        var sub = ((window_w - cd['x']) < 555) ? (555 - window_w + cd['x']) : 0;
        div.style.visibility = 'visible';
        div.style.width = 'auto';
        div.style.left = (cd['x']-sub)+'px';
        div.style.top = (cd['y']+h)+'px';
    }
    else
    {
        div.style.visibility = 'hidden';
    }
}
</script>
            <button class="button2" onclick="display_upload_imageshack(this);" onmouseover="helpline('y')" type="button" id="imageshack" accesskey="h" ><img src="/wysiwyg/picture_save.png" /></button>  
    
 


