/* <![CDATA[ */

/***********************************************
* Javascript © Felix Mau (www.mx-forums.de)
* This notice must stay intact for legal use
***********************************************/

// Load image and open it in new window
function openPic(url, title) {
	var img = new Image();
	img.src = url;

	if (img.complete)
	{
		if (navigator.appName == 'Microsoft Internet Explorer')
		{
			// Scrollbars
			window_height = img.height + 15;
			window_width = img.width + 30;
		}
		else
		{
			window_height = img.height + 10;
			window_width = img.width + 10;
		}
		window_top = (screen.height - window_height) / 2;
		window_left = (screen.width - window_width) / 2;
		
		newWindow = window.open('', '_blank', 'height=' + window_height + ', width=' + window_width + ', screenY=' + window_top + ', screenX=' + window_left + ', scrollbars=yes, toolbar=no, resizable=yes');
		
		if (newWindow == null)
		{
			alert('Ihr Popup-Blocker verhindert die Produktansicht!');
		}
		else
		{
			newWindow.document.open();
			newWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>' + title + '</title></head><body style="background: #FFF; margin: 0; padding: 5px; cursor: pointer;" onclick="window.close();"><img border="0" src="' + url + '" alt="Produktbild" title="Vollbildansicht schließen" /></body></html>');
			newWindow.document.close();
			newWindow.focus();
		}
	}
	else
	{
		window.setTimeout('openPic("' + url + '", "' + title + '")', 250);
	}
	return false;
}

// Select or deselect all checkboxes
function select(obj) {
	var table = obj.parentNode.parentNode.parentNode.parentNode;
	var inputs = table.getElementsByTagName('input');

	for (var i = 0; i < inputs.length; i++ )
	{
	    if (inputs[i].type == 'checkbox')
	    {
	    	inputs[i].checked = (obj.title == 'all') ? 'checked' : false;
	    }
	}
	obj.title = (obj.title == 'all') ? 'none' : 'all';
}

/* ]]> */
