// popup fuer Bilder, Verwendet in /includes/besonderes_output_funcs.php
function bigPic(img, title)
{
	pic = new Image();
  	pic.src = img;

	if( ( pic.width != 0 ) && ( pic.height != 0 ) )
  	{
		w = pic.width;
  		h = pic.height;
  		w_window = w+20;
  		h_window = h+70;
  		posLeft = 100;
		posTop = 100;
		newWindow = window.open("","newWindow","width="+w_window+", height="+h_window+", left="+posLeft+", top="+posTop+", menubar=no" );
		newWindow.document.open();  
		newWindow.document.write('<html><title>kreuzfahrt-sonderangebote.de: '+title+'</title><body style="color:#fff;font-family:Arial,Helvetica,Sans-Serif;background-color:#486A95;margin:0;padding:10px;" onBlur="self.close()">');   
		newWindow.document.write('<img style="border:1px solid #000;" src="'+img+'" width="'+w+'" height="'+h+'" alt="'+title+'" />');   
		newWindow.document.write('<p style="line-height:20px;font-size:12px;font-weight:bold;text-align:center;">'+title+'</p>');   
		newWindow.document.write('</body></html>'); 
		newWindow.document.close();  
		newWindow.focus();
  	}
  	else
  	{
    	//caller = "bigPic('"+img+"','"+title+"')";
    	interval = setTimeout( 'bigPic("'+img+'","'+title+'")', 20 );
  	}

	return false;
}
