Hi I have this JS CODE
function openPopup(url)
{
var newElem = new Element( 'div' );
newElem.setAttribute('rel','handler');
newElem.setAttribute('class','modal');
SqueezeBox.setContent( 'adopt', newElem );
SqueezeBox.setContent( 'iframe', url);
}
This open a popup with the given URL.I'd like to change the size of the SqueezeBox how to do it?