
// Inserted by Spawn New Window Action

function sp_Open( sURL , sTitle , sParameters )
{
var sPar1 = "width=220,height=410,left=5,top=5,scrollbars=yes,resizable=no,toolbar=no,status=no,menubar=no,null,null";
var remote = window.open( '' , sTitle , sPar1 );
remote.location.replace(sURL);
if (!remote.opener)
remote.opener = self;
if (window.focus)
remote.focus();
return remote;
}

function showDetails(id,category)
{
	if(id==null) return;
	if(category==null) category = 1;	
	var win = window.open("index.php" + "?id=" + id,"ElektroService" +id,"width=230,height=550,status=no,scrollable=no,resizable=no");
	if(win==null) return;
	win.focus();
}

var poultry	= 1;
var pigs	= 2;

function sp_Open( area, category )
{
	var popupWidth = "220";
	var popupHeight = "720";
	if(category == pigs)
		popupHeight ="410";
	var sPar1 = "width=" + popupWidth + ",height=" + popupHeight + ",left=5,top=5,scrollbars=yes,resizable=no,toolbar=no,status=no,menubar=no,null,null";
	var remote;
	remote = window.open( "/bd_scripte/verkaufsberater/popup_pl.htmi?g=" + area + "&c=" + category, "area" + area +category , sPar1);
		
	if (!remote.opener)
	remote.opener = self;
	if (window.focus)
	remote.focus();
	return remote;
}
