var farbtabellen = [];

function farbtabelle(obj_target)
{

	// assigning methods
	this.popup    = cal_popup_farbtabelle;

	this.target = obj_target;
	
	// register in global collections
	this.id = farbtabellen.length;
	farbtabellen[this.id] = this;
}


function cal_popup_farbtabelle (str_datetime)
{
	var obj_calwindow = '';
	//obj_calwindow = window.open('/javascripte/farbtabelle.html?id=' + this.id, 'HEX-Farbtabelle', 'width=260,height=260,status=no,resizable=no,top=150,left=250,dependent=yes,alwaysRaised=yes');
	obj_calwindow = window.open('/kunden/javascripte/farbtabelle.html?id=' + this.id, 'Farbtabelle', 'width=260,height=260,status=no,resizable=no,top=150,left=250,dependent=yes,alwaysRaised=yes');
	obj_calwindow.opener = window;
	obj_calwindow.focus();
}
