function OpenCC(trader) {
	var width, height, url;
	width = 350;
	height = 350;
	url = "http://cc.seat.de/hdl_startpopup.asp?trader=" + trader + "&popupwidth=" + width + "&popupheight=" + height;

	window.open(url, "SeatCarConfigurator","resizable=no,scrollbars=no,top=0,left=0,screenX=0,screenY=0,width=" + width + ",height=" + height + ",resizable=no,scrollbars=no,toolbar=no,status=no,directories=no,menubar=no,location=no");
}

